/// <summary>
 /// Returns the names of the point objects that define the object.
 /// The point names are listed in the positive order around the object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <returns>System.String[].</returns>
 /// <exception cref="CSiException"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception>
 protected List <string> getPoints(IObservablePoints app)
 {
     _pointNames = new List <string>(app.GetPoints(Name));
     return(PointNames);
 }
예제 #2
0
 /// <summary>
 /// Returns the names of the point objects that define the object.
 /// The point names are listed in the positive order around the object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <returns>System.String[].</returns>
 /// <exception cref="CSiException"><see cref="CSiApiBase.API_DEFAULT_ERROR_CODE" /></exception>
 protected string[] getPoints(IObservablePoints app)
 {
     return(app.GetPoints(Name));
 }