Share

PromptType

C++

enum PromptType {
  GetAngle = 1,
  GetCorner = 2,
  GetDist = 3,
  GetInt = 4,
  GetKword = 5,
  GetOrient = 6,
  GetPoint = 7,
  GetReal = 8,
  GetString = 9,
  EntSel = 10
};

File

acpp.h

Members

Members Description
GetAngle acedGetAngle()
GetCorner acedGetCorner()
GetDist acedGetDist()
GetInt acedGetInt()
GetKword acedGetFullKword()
GetOrient acedGetOrient()
GetPoint acedGetPoint()
GetReal acedGetReal()
GetString acedGetFullString()
EntSel acedEntSel()

Description

This enumeration describes the possible user input methods supported by the IAcPpAcadInput interface. Clients set the PromptType property to one of these enumerations before calling DoPrompt() to obtain user input.

The following table shows the acedGetxxx method invoked by DoPrompt() for each enum.

Was this information helpful?