Max - property of the PmfNumber object
Description:
Maximum value.
Note:
Property access
for read and write.
When value is being entered into the form, the system tests the value and compares it to this maximum that cannot be exceeded.
If the property is not set, then returns the value:
null for
JavaScript or
Empty for
VBScript. Assigning such value brings the property to the state "not set".
This property is also functional in
Web panels.
Example1:
JavaScriptSelect and copy to clipboard
// Setting the property when the object is created
// If integer:
var oNumber = oForm.CreateItem("number", "Id1", "Title", "Min:-6;Max:3;");
// If real number:
var oNumber = oForm.CreateItem("number", "Id1", "Title", "Subtype:float;Min:-6.25;Max:3.14;");
var nValue = oNumber.Max;
// Reading from the property
oNumber.Max = 3;
// Writing into the property