This .NET enum wraps the GS::ErrorStatus ObjectARX enum. It contains values for defining error codes in the 3D Graphics System.
Public Enum ErrorStatus Success OutOfRange InvalidInput End Enum
public enum ErrorStatus { Success, OutOfRange, InvalidInput }
| 
 
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? |