ListViewItem.GetValue Method (Typed) | |
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
public virtual Usual GetValue(
[DefaultParameterValueAttribute(null, 3)] Symbol symColumnName
)
Request Example
View SourceParameters
- 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 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