InterviewSolution
| 1. |
What Does Openuserobject() Do? |
|
Answer» OpenUserObject() adds a user object to the SPECIFIED WINDOW and makes all its properties and CONTROLS available to scripts. windowname.OpenUserObject ( userobjectvar, userobjecttype {, x, y } ) This function is USED when you want dynamically, at runtime place some user objects on a window. This function displays this user object, makes all its attributes available to scripts. You MUST open a user object before you can access the attributes of the user object. If you access the user object’s attributes before you open it, it will cause an execution error. OpenUserObject() adds a user object to the specified window and makes all its properties and controls available to scripts. windowname.OpenUserObject ( userobjectvar, userobjecttype {, x, y } ) This function is used when you want dynamically, at runtime place some user objects on a window. This function displays this user object, makes all its attributes available to scripts. You must open a user object before you can access the attributes of the user object. If you access the user object’s attributes before you open it, it will cause an execution error. |
|