RapidDataDataType Property |
Namespace: ABB.Robotics.Controllers.RapidDomain
public bool IsPersistent(RapidData rd) { bool result = false; RapidDataType type = null; try { type = rd.DataType; if (type != null) { result = (type.Type & SymbolTypes.Persistent) == SymbolTypes.Persistent; } } catch (System.Exception se) { // Handle the exception } finally { if (type != null) { type.Dispose(); type = null; } } return result; }