メインコンテンツまでスキップ
バージョン: 20 R6 BETA

VP Combine ranges

VP Combine ranges ( rangeObj : Object ; otherRangeObj : Object {;...otherRangeObjN : Object } ) : Object

引数説明
rangeObjObject->レンジオブジェクト
otherRangeObjObject->レンジオブジェクト
戻り値Object<-統合されたレンジを格納したオブジェクト

説明

VP Combine Ranges コマンドは、2つ以上のレンジオブジェクトを統合した新しいレンジオブジェクトを返します。 レンジはすべて同じ 4D View Pro エリア内のものでなくてはなりません。

rangeObj には、1つ目のレンジオブジェクトを渡します。

otherRangeObj には、rangeObj のレンジオブジェクトと統合させる他のレンジオブジェクトを渡します。

このコマンドは rangeObj および otherRangeObj のオブジェクトを参照によって組み合わせます。

例題

セル、カラム、行のレンジオブジェクトを、新規レンジオブジェクトにまとめます:

 $cell:=VP Cell("ViewProArea";2;4) // C5
$column:=VP Column("ViewProArea";3) // カラム D
$row:=VP Row("ViewProArea";9) // 行 10

$combine:=VP Combine ranges($cell;$column;$row)

参照

VP All
VP Cells
VP Column
VP Name
VP Row
VP SET COLUMN ATTRIBUTES