Save

<< Click to Display Table of Contents >>

 

Save

Save()

This method saves the specified object, which was modified at run time. Children objects are also saved, according to the specifications of the parent object. This method is not valid for Screen and Viewer objects. The next script contains an example of using this method.

Sub CommandButton1_Click()
  Set area = Application.GetObject("ConfigAlarms")._
    AddObject("Area", true)
  Application.GetObject("ConfigAlarms").Save()
End Sub

 

NOTE

Changes executed at run time and saved in an object are only visible in Elipse E3 Studio after updating a project. To do so, right-click the name of a project and select the Refresh option.

Was this page useful?