Visible - property of the PmfObject object
Description:
Returns or sets the visibility/invisibility of
Pmf object.
Values:
-1 - The object is hidden, its place is taken by the following object. It is counted in the calculation of the size of the contents of of the window (scrollbar) - i.e. the empty space appears at the bottom of the window.
0 - The object is hidden and its position is empty.
1 - The object is visible.
Note:
Property access
for read and write.
This method is also functional in
Web panels.
Example:
JavaScriptSelect and copy to clipboard
var oString = oForm.CreateItem("string", "IdStr1", "Title");
var nVisible = oString.Visible;
// Reading from the property
oString.Visible = 1;
// Writing into the property