ListViewItem.GetText Method (Symbol) | |
Retrieve the text label of a column.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD GetText(
symColumnName AS SYMBOL
) AS STRING
public virtual string GetText(
Symbol symColumnName
)
Request Example
View SourceParameters
- symColumnName
- Type: Symbol
The symbolic name of the column whose text you want to retrieve.
Return Value
Type:
String
The text label of the specified column.
Examples 1oLVI := SELF:oDClvClaims:GetItemAttributes( nItemNr )
2IF oLVI != NULL_OBJECT
3cCity := oLVI:GetText( #cCity )
4ENDIF
See Also