Click or drag to resize

ListViewItem.GetValue Method (Typed)

X#
Retrieve the value of a column.

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

Parameters

symColumnName
Type: Symbol
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