RowHeader

@Serializable
data class RowHeader(val id: String, val title: String, val row: Int, val column: Int, val description: String? = null, val disabled: Boolean = false)

Data class representing the header of a row in a table.

Constructors

Link copied to clipboard
constructor(id: String, title: String, row: Int, column: Int, description: String? = null, disabled: Boolean = false)

Properties

Link copied to clipboard
val column: Int
Link copied to clipboard
val description: String? = null

The description of the row header.

Link copied to clipboard
val disabled: Boolean = false
Link copied to clipboard
val id: String

The unique identifier of the row header.

Link copied to clipboard
val row: Int

The row index of the header.

Link copied to clipboard

The title of the row header.