VP Get row attributes
VP Get row attributes ( rangeObj : Object ) : Collection
引数 | 型 | 説明 | ||
---|---|---|---|---|
rangeObj | Object | -> | レンジオブジェクト | |
戻り値 | Collection | <- | 行プロパティのコレクション |
説明
VP Get row attributes
コマンドは、rangeObj 引数で指定したレンジ内にある行のプロパティのコレクションを返します。
rangeObj 引数には、属性を取得したい行のレンジを格納しているオブジェクトを渡します。
VP SET ROW ATTRIBUTES コマンドを使用して属性を設定してる/いないに関わらず、 返されるコレクションには行の属性がすべて返されます。
例題
以下のコードは、指定したレンジ内の行属性のコレクションを返します:
var $range : Object
var $attr : Collection
$range:=VP Column("ViewProArea";1;2)
$attr:=VP Get row attributes($range)
参照
VP Get column attributes
VP SET COLUMN ATTRIBUTES
VP SET ROW ATTRIBUTES