Share

TextHorzMode

C++

enum TextHorzMode {
  kTextLeft = 0,
  kTextCenter = 1,
  kTextRight = 2,
  kTextAlign = 3,
  kTextMid = 4,
  kTextFit = 5
};

File

acdb.h

Members

Members Description
kTextLeft TH_LEFT
kTextCenter TH_CENT
kTextRight TH_RIGHT
kTextAlign THV_ALIGN
kTextMid THV_MID
kTextFit THV_FIT

Description

The header file acdbabb.h contains const definitions for the TextHorzMode values so that they can be used without the "AcDb::" scope resolution qualifier. This should only be used when you are certain there will be no name conflicts.

Was this information helpful?