BodyWidthIni - property of the PmfObject object
Description:
Initial width of the
Body area of the
Pmf object, i.e. the initial width 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 BodyWidthIni
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 width 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,
PmfButton.
Note:
Property access
for read and write.
The default value is for item:
PmfString=20,
PmfNumber=8,
PmfButton=7,
PmfTable=20,
PmfTree=10.
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 from the property
oString.BodyWidthIni = 15;
// Writing into the property