ITreeGridNode.GetCellValueString method
Namespace: NextDesign.Core
Description
Gets the cell value of the specified column of this node in string format.
Returns an empty string if the cell has no value.
The strings that can be retrieved depend on the data type of the column.
- bool type: "True" or "False"
- Numeric type: string representation of a number
- String type: String
- Enumeration type: Literal string
- Rich text type: Plain text
- Class type (model reference): Display name of the model (separated by spaces in case of multiple models)
[Model display name]
The display name of the model will be in the following format, similar to the display on the UI.
{Parent element name}/${Model name}
(Example) Use case/driver
argument
Name | Type | Description |
---|---|---|
column | ITreeGridColumn | Column information |
Return value
- string