Share

AcString::eFormat Enumeration

C++

enum eFormat {
  kSigned = 1,
  kUnSigned,
  kHex,
  kHexSigned
};

File

AcString.h

Members

Members Description
kSigned Formats the argument as a signed integer.
kUnSigned Formats the argument as an unsigned integer.
kHex Formats the argument as a hexadecimal.
kHexSigned Formats the argument as a signed hexadecimal.

Description

Values for the nCtorFlags arguments used in some of the AcString constructors.

Previous Declaration

enum eFormat {

kSigned = 0x0002,

kUnSigned = 0x0003,

kHex = 0x0004

};

History

AutoCAD 2025

kHexSigned was added.

Was this information helpful?