ListViewItem.GetValue Method | |
Retrieve the value of a column.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD GetValue(
symColumnName
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual GetValue(
Usual symColumnName = default
)
Request Example
View SourceParameters
- 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 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