8 Functions
48
Order of arguments:
GET_OBJECT_VISIBLE (ProcPicIndex, ObjectIndex)
Example:
bOUT := GET_ OBJECT_VISIBLE(1, 4);
(* Returns the status of the parameter "Visible" of process screen 2, object 5. *)
SET_OBJECT_EDITABLE
Sets the editability of an object in a process screen.
The return value (BOOL) indicates whether the function was executed successfully (TRUE) or whether
an error occurred (FALSE).
Order of arguments:
SET_OBJECT_EDITABLE (ProcPicIndex, ObjectIndex, Value)
Example:
bOUT := SET_ OBJECT_EDITABLE(9, 19, FALSE);
(* Sets the parameter "Editable" of process screen 10, object 20 to FALSE. *)
GET_OBJECT_EDITABLE
The return value (UINT) returns the status of the editability of an object in a process screen.
Order of arguments:
GET_OBJECT_EDITABLE (ProcPicIndex, ObjectIndex)
Example:
bOUT := GET_ OBJECT_EDITABLE(9, 19);
(* Returns the status of the parameter "Visible" of process screen 10, object 20. *)