CollectionItemInfo

Class

Common
class CollectionItemInfo(
    val rowIndex: Int,
    val rowSpan: Int,
    val columnIndex: Int,
    val columnSpan: Int,
)

Information about the item of a collection.

A collection item is contained in a collection, it starts at a given rowIndex and columnIndex in the collection, and spans one or more rows and columns. For example, a header of two related table columns starts at the first row and the first column, spans one row and two columns.

Parameters

rowIndexthe index of the row at which item is located
rowSpanthe number of rows the item spans
columnIndexthe index of the column at which item is located
columnSpanthe number of columns the item spans