Autodesk.AutoCAD.GraphicsSystem Namespace > ErrorStatus Enumeration
Autodesk.AutoCAD.GraphicsSystem.ErrorStatus Enumeration
Description

 

This .NET enum wraps the GS::ErrorStatus ObjectARX enum. It contains values for defining error codes in the 3D Graphics System.

Visual Basic
Public Enum ErrorStatus
  Success
  OutOfRange
  InvalidInput
End Enum
C#
public enum ErrorStatus {
  Success,
  OutOfRange,
  InvalidInput
}
Members
Members 
Description 
Success 
Indicates that the associated function call executed successfully. 
OutOfRange 
Indicates that the value passed into the associated function call is out of range. 
InvalidInput 
Indicates that the value passed into the associated function is invalid. 
   Comments?