BodyHeightIni - property of the PmfObject object
Description:
Initial height of the
Body area of the
Pmf object, i.e. the initial height after the form window opens.
The
Body area of the
Pmf object is the area where the item value is displayed. For example for the
PmfString object it is the area for entering number.
Syntax:
Variant BodyHeightIni
Values:
real number - The value is in
CSS units "
em".
1em equals to the current font size.
For example if the document font size is
12pt then
1em equals to
12pt (0.5em = 6pt, 2em = 24pt).
content - The initial height of the
Body area is automatically set according to the size of the content (e.g. by text size).
This value
can be set only for object:
PmfString("
Multiline:1;").
Example:
JavaScriptSelect and copy to clipboard
var oString = oForm.CreateItem("string", "IdStr1", "Title", "BodyHeightIni:4;");
var nBodyHeightIni = oString.BodyHeightIni;
// Reading from the property
oString.BodyHeightIni = 4;
// Writing into the property