SpelControllerInfo Class
| Member name | Type | Description |
|---|---|---|
| ProjectName | String | The name of the project in the Controller. |
| ProjectID | String | The unique project ID of the project in the Controller. |
| Options | List[SpelOptionInfo] | The list of options in the controller. |
Here is an example.
VB Example:
Dim info As RCAPINet.SpelControllerInfo
info = m_spel.GetControllerInfo()
Label1.Text = info.ProjectID + " " + info.ProjectName
C# Example:
SpelControllerInfo info;
info = m_spel.GetControllerInfo();
Label1.text = info.ProjectID + " " + info.ProjectName;