IRow

Overview

IRow is a interface in Aspose.Slides FOSS for Java. Inherits from: ICellCollection, IBulkTextFormattable.

Represents a row in a table.

This interface provides 15 methods for working with IRow objects in Java programs. Available methods include: asICollection, asIEnumerable, asIPresentationComponent, asISlideComponent, get, getAsIBulkTextFormattable, getAsICellCollection, getHeight, getMinimalHeight, getPresentation, getRowFormat, getSlide, and 3 additional methods. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: asIBulkTextFormattable, asICellCollection, height, minimalHeight, presentation, rowFormat, and 1 more.

Properties

NameTypeAccessDescription
heightdoubleReadReturns the height of the row.
minimalHeightdoubleReadReturns the minimal height of the row.
rowFormatIRowFormatReadReturns the RowFormat object that contains formatting properties for this row.
asICellCollectionICellCollectionReadAllows to get base ICellCollection interface.
asIBulkTextFormattableIBulkTextFormattableReadAllows to get base IBulkTextFormattable interface.
slideIBaseSlideReadReturns the parent slide.
presentationIPresentationReadReturns the presentation containing this component.

Methods

SignatureDescription
getHeight()doubleReturns the height of the row.
getMinimalHeight()doubleReturns the minimal height of the row.
setMinimalHeight(value: double)Sets the minimal height of the row.
getRowFormat()IRowFormatReturns the RowFormat object that contains formatting properties for this row.
getAsICellCollection()ICellCollectionAllows to get base ICellCollection interface.
getAsIBulkTextFormattable()IBulkTextFormattableAllows to get base IBulkTextFormattable interface.
get(index: int)ICellGets the cell at the specified index.
size()intReturns the number of cells in the collection.
asISlideComponent()ISlideComponentReturns the base {@link ISlideComponent} interface.
asICollection()List<ICell>Returns the collection as a {@link List}.
asIEnumerable()Iterable<ICell>Returns the collection as an {@link Iterable}.
getSlide()IBaseSlideReturns the parent slide.
asIPresentationComponent()IPresentationComponentReturns the base {@link IPresentationComponent} interface.
getPresentation()IPresentationReturns the presentation containing this component.
setTextFormat(source: Object)Sets the text format for all child text elements.

See Also