BodyWidthIni - property of the PmfObject object
Description:
Initial width of
Pmf object body, i.e. the initial width after the form window opens.
The body of Pmf object is the area where the item value is displayed. For example for PmfString is the area for text input.
The value is in
HTML units "
em".
1em equals to the current font size. For example if the document font is
12pt then
1em equals to
12pt (0.5em = 6pt, 2em = 24pt).
Note:
Property access
for read and write. Preset value for item:
PmfString=20,
PmfNumber=8,
PmfButton=7,
PmfTable=20.
It is possible to write into this property only if the
PmForm window has not been opened yet.
This property is also functional in Web panels.
This property
is not functional for object:
PmfBool.
Example:
JavaScriptSelect and copy to clipboard
var oString = oForm.CreateItem("string", "IdStr1", "Title", "BodyWidthIni:15;");
var nBodyWidthIni = oString.BodyWidthIni; //Reading the value
oString.BodyWidthIni = 15; //Writing the value