CollectionItemInfo


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.

Summary

Public constructors

CollectionItemInfo(
    rowIndex: Int,
    rowSpan: Int,
    columnIndex: Int,
    columnSpan: Int
)
Cmn

Public properties

Int

the index of the column at which item is located

Cmn
Int

the number of columns the item spans

Cmn
Int

the index of the row at which item is located

Cmn
Int

the number of rows the item spans

Cmn

Public constructors

CollectionItemInfo

CollectionItemInfo(
    rowIndex: Int,
    rowSpan: Int,
    columnIndex: Int,
    columnSpan: Int
)
Parameters
rowIndex: Int

the index of the row at which item is located

rowSpan: Int

the number of rows the item spans

columnIndex: Int

the index of the column at which item is located

columnSpan: Int

the number of columns the item spans

Public properties

columnIndex

val columnIndexInt

the index of the column at which item is located

columnSpan

val columnSpanInt

the number of columns the item spans

rowIndex

val rowIndexInt

the index of the row at which item is located

rowSpan

val rowSpanInt

the number of rows the item spans