Accessing Elipse Power Properties

<< Click to Display Table of Contents >>

 

Accessing Elipse Power Properties

Accessing any server object in a script that executes in Elipse Power Studio can be performed by using the Application.GetObject directive. The word Application returns the application object related to the current object's context, and the GetObject method searches on the loaded Domain in Elipse Power Studio for an application or Domain object with the provided path. In the next example, the CustomConfig event is triggered in Elipse Power Studio.

Sub XControl1_CustomConfig
  Application.GetObject("Data.DemoTag1").DocString = "Documentation"
End Sub

Was this page useful?