company logo

Cell :: text - Text property

The text property provides the data (in text format), which is currently displayed for the data item.

Return value:  Text string ( odaba::String & )

Implementation overview

Implementation details

  1. Get data item text
    odaba::String Cell  :: text (  )

    The function returns the text currently displayed for the data item. This may differ from the data provided in the property handle (property()).

    When cell is not valid, the function throws an exception.

  2. to list
  3. Change text
    odaba::String Cell  :: text ( odaba::String &sText )

    The function changes the text in the data item. When the data item is a check box, true or false might be passed as text data.

    When cell is not valid, the function throws an exception.

    • sText - Text string
  4. to list