CollectionInfo


Information about the collection.

A collection of items has rowCount rows and columnCount columns. For example, a vertical list is a collection with one column, as many rows as the list items that are important for accessibility; A table is a collection with several rows and several columns.

Summary

Public constructors

CollectionInfo(rowCount: Int, columnCount: Int)
Cmn

Public functions

open operator Boolean
equals(other: Any?)
Cmn
open Int
Cmn
open String
Cmn

Public properties

Int

the number of columns in the collection, or -1 if unknown

Cmn
Int

the number of rows in the collection, or -1 if unknown

Cmn

Public constructors

CollectionInfo

CollectionInfo(rowCount: Int, columnCount: Int)
Parameters
rowCount: Int

the number of rows in the collection, or -1 if unknown

columnCount: Int

the number of columns in the collection, or -1 if unknown

Public functions

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

toString

open fun toString(): String

Public properties

columnCount

val columnCountInt

the number of columns in the collection, or -1 if unknown

rowCount

val rowCountInt

the number of rows in the collection, or -1 if unknown