ListViewItem.GetText Method | |
Retrieve the text label of a column.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD GetText(
symColumnName,
nRefImageIndex
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual GetText(
Usual symColumnName = default,
Usual nRefImageIndex = default
)
Request Example
View SourceParameters
- symColumnName (Optional)
- Type: Usual
The symbolic name of the column whose text you want to retrieve. - nRefImageIndex (Optional)
- Type: Usual
If this is a reference to a numeric variable, it gets the image index of this column.
Return Value
Type:
Usual
The text label of the specified column.
Examples 1oLVI := SELF:oDClvClaims:GetItemAttributes( nItemNr )
2IF oLVI != NULL_OBJECT
3cCity := oLVI:GetText( #cCity )
4ENDIF
See Also