CellFinder

interface CellFinder : Finder<Cell>

Inheritors

Functions

Link copied to clipboard
abstract fun all(): List<Cell>

Returns all matching items.

Link copied to clipboard
abstract override fun barcode(key: String?): BarcodeCell?

Finds a barcode item by its identifier.

Link copied to clipboard
abstract fun block(key: String?): Cell?

Finds a block (rich text) item by its identifier.

Link copied to clipboard
abstract override fun date(key: String?): DateCell?

Finds a date item by its identifier.

Link copied to clipboard
abstract override fun dropdown(key: String?): DropdownCell?

Finds a dropdown (single-select) item by its identifier.

Link copied to clipboard
abstract override fun file(key: String?): FileCell?

Finds a file item by its identifier.

Link copied to clipboard
abstract override fun find(key: String?): Cell?

Finds a Cell by key

Link copied to clipboard
abstract override fun image(key: String?): ImageCell?

Finds an image item by its identifier.

Link copied to clipboard
abstract override fun multiSelect(key: String?): MultiSelectCell?

Finds a multi-select item by its identifier.

Link copied to clipboard
abstract override fun number(key: String?): NumberCell?

Finds a numeric item by its identifier.

Link copied to clipboard
abstract override fun signature(key: String?): SignatureCell?

Finds a signature item by its identifier.

Link copied to clipboard
abstract override fun text(key: String?): TextCell?

Finds a TextCell by key

Link copied to clipboard
abstract override fun textArea(key: String?): TextAreaCell?

Finds a multi-line text area item by its identifier.