Value - property of the PmgWEdit object
Description:
Displayed value.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Text" configurator of this object.
If it is written into this property and if this property is linked to the data binding
PP,
AP,
SP,
OP or
GP, then this value is transferred also into the source of this data binding. The data type of the property is defined in the "
Data type of entered value" configurator and can be
String,
Double or
Long.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oEdit = pMe.Items("/WEdit");
var value = oEdit.Value;
// Reading from the property
oEdit.Value = "Text";
// Writing into the property
Dim oEdit
Set oEdit = pMe.Items("/WEdit")
Dim value
value = oEdit.Value
' Reading from the property
oEdit.Value = "Text"
' Writing into the property