DrawInfo

data class DrawInfo(val editable: Boolean = true, val focusId: String? = null, val position: Int = 0, val extraData: Map<String, Any> = emptyMap(), val selectMode: Boolean = false)

The class holds the information of the content to be draw by the SDK.

Parameters

editable

if the content can the edited

focusId

which content has the focus

position

the position of the content

extraData

additional data

selectMode

if the content is current being selected and should show a visible feedback of it.

Constructors

Link copied to clipboard
constructor(editable: Boolean = true, focusId: String? = null, position: Int = 0, extraData: Map<String, Any> = emptyMap(), selectMode: Boolean = false)

Properties

Link copied to clipboard
val editable: Boolean = true
Link copied to clipboard
Link copied to clipboard
val focusId: String? = null
Link copied to clipboard
val position: Int = 0
Link copied to clipboard
val selectMode: Boolean = false