Click or drag to resize

ListViewItem.GetValue Method

X#
Retrieve the value of a column.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD GetValue(
	symColumnName
) AS USUAL CLIPPER
Request Example View Source

Parameters

symColumnName (Optional)
Type: Usual
The symbolic name of the column whose value you want to retrieve.

Return Value

Type: Usual
The value of the specified column.
Examples
X#
1nCount := SELF:oDClvClaims:ItemCount
2FOR x := 1 UPTO nCount
3oLVI := SELF:oDClvClaims:GetItemAttributes(x)
4IF oLVI != NULL_OBJECT
5nValue := oLVI:GetValue( #nItems )
6nTotal += nValue
7ENDIF
8NEXT x
See Also