Line :: cell - Get cell from line
The function returns a cell from the selected line. When required cell is not available, the function throws an exception.
Return value: Constant reference to cell ( odabagui::Cell & )
Implementation overview
- Get line cell by column name
Line :: cell ( sName ) - Get line cell at position
Line :: cell ( iPosition )
Implementation details
-
Get line cell by column name
odabagui::Cell Line  :: cell ( odaba::String &sName )
The function returns the line cell for the column with name passed in sName. When no such column exists, the function throws an exception.
- sName
- Resource or entity name
The name refers to a design or GUI resource.
to list
- sName
- Resource or entity name
-
Get line cell at position
odabagui::Cell Line  :: cell ( int32 iPosition )
The function returns the line cell for the column at position passed in iPosition (0 for first column). When no such column exists, the function throws an exception.
- iPosition
- Position in collection
The position of an entry in a collection or list is the number of the entry in the collection beginning with 0 for the first entry.
to list
- iPosition
- Position in collection