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
- Get data item text
Cell :: text (  ) - Change text
Cell :: text ( sText )
Implementation details
-
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.
to list
-
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
to list