指定したフォームデザインオブジェクトの高さを判定します。
構文Reference_Syntax.h( OBJECT param1 [, STRING param2 [, INTEGER param3 ] ] )
パラメーター
param1
|
area、contentArea、draw、field、pageArea、subform のいずれかの XML フォームオブジェクトモデルのオブジェクトの完全修飾参照構文式です。
|
param2(オプション)
|
戻り値の単位のタイプを表す文字列です。空白の場合、デフォルトの単位のタイプはポイントです。
|
param3(オプション)
|
オブジェクトの高さを取得するコンテンツ領域を示すゼロベースのインデックス値を表す整数値です。空白の場合、デフォルトの値は 0 です。
このパラメーターを使用すると、ページなど複数のコンテンツ領域に分散するオブジェクトの高さを計算できます。例えば、複数のコンテンツ領域にまたがるサブフォームオブジェクトの高さを確認する場合は、このパラメーターを使用して各コンテンツ領域のサブフォームの高さを列挙してすべて合計します。
|
戻り値指定したコンテンツ領域にあるフォームデザインオブジェクトの高さです。
JavaScript// Returns the height of a single instance of TextField1
xfa.layout.h(TextField1,"in");
// Calculates the height of Subform1 across two content areas and displays
// the total in a message box.
var iHeight = xfa.layout.h(Subform1,"in",0) + xfa.layout.h(Subform1,"in",1);
xfa.host.messageBox(iHeight);
FormCalc// Returns the height of a single instance of TextField1
xfa.layout.h(TextField1,"in")
// Calculates the height of Subform1 across two content areas and displays
// the total in a message box.
var iHeight = xfa.layout.h(Subform1,"in",0) + xfa.layout.h(Subform1,"in",1)
xfa.host.messageBox(iHeight)
|
|
|