Click or drag to resize

SystemInfoSystemName Property

Returns the name of the active system.

Namespace:  ABB.Robotics.Controllers.SystemInfoDomain
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public static string SystemName { get; }

Property Value

Type: String
Exceptions
ExceptionCondition
GeneralExceptionA General Exception has occurred.
Examples
This example displays the name the current robot system.
private void ShowSystemName()
{
  try
  {
    textBox1.Text = ABB.Robotics.Controllers.SystemInfoDomain.SystemInfo.SystemName;
  }
  catch (GeneralException ee)
  {
    // TODO: Add error handling
  }
  catch (System.Exception ee)
  {
    // TODO: Add error handling
  }
}
See Also