Share

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.

C#

public enum ErrorStatus {
  Success,
  OutOfRange,
  InvalidInput
}

Visual Basic

Public Enum ErrorStatus
  Success
  OutOfRange
  InvalidInput
End Enum

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.

Was this information helpful?