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
Syntaxpublic static string SystemName { get; }Property Value
Type:
String
Exceptions
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)
{
}
catch (System.Exception ee)
{
}
}
See Also