Share

StatusType

C++

enum StatusType {
  StatusPrompting = -1,
  StatusRTNORM = 5100,
  StatusRTERROR = -5001,
  StatusRTCAN = -5002,
  StatusRTNONE = 5000,
  StatusRTREJ = -5003,
  StatusRTKWORD = -5005,
  StatusMODELESS = 5027
};

File

acpp.h

Members

Members Description
StatusPrompting The object is prompting for user input
StatusRTNORM The return value from the last user input obtained was RTNORM
StatusRTERROR The return value from the last user input obtained was RTERROR
StatusRTCAN The return value from the last user input obtained was RTCAN
StatusRTNONE The return value from the last user input obtained was RTNONE
StatusRTREJ The return value from the last user input obtained was RTREJ
StatusRTKWORD The return value from the last user input obtained was RTKWORD
StatusMODELESS The return value from the last user input obtained was RTMODELESS

Description

This enumeration describes the status of the input acquisition, which is stored in the Status property of the object.

Was this information helpful?