company logo

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

Implementation details

  1. 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.

  2. to list
  3. 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.

  4. to list