VP Get column attributes
VP Get column attributes ( rangeObj : Object ) : Collection
Parameter | Type | Description | |
---|---|---|---|
rangeObj | Object | -> | Range object |
Result | Collection | <- | Collection of column properties |
Description
The VP Get column attributes
command returns a collection of properties for any column in the rangeObj.
In rangeObj, pass an object containing a range of the columns whose attributes will be retrieved.
The returned collection contains any properties for the columns, whether or not they have been set by the VP SET COLUMN ATTRIBUTES command.
Example
The following code:
C_OBJECT($range)
C_COLLECTION($attr)
$range:=VP Column("ViewProArea";1;2)
$attr:=VP Get column attributes($range)
... will return a collection of the attributes within the given range:
See also
VP Get row attributes
VP SET COLUMN ATTRIBUTES
VP SET ROW ATTRIBUTES