Share

AcUt

C++

struct AcUt {
  enum QFormatBitFlags {
    kSuppressZeroFeet = 0x100,
    kSuppressZeroInches = 0x200,
    kSuppressLeadingZero = 0x400,
    kSuppressTrailingZero = 0x800,
    kIgnoreUnitMode = 0x1000,
    kUseAltUnits = 0x2000
  };
};

File

acut.h

Members

Members Description
kSuppressZeroFeet Suppress zero feet, when LUNITS/ALTUNIT is 3 or 4
kSuppressZeroInches Suppress zero inches, when LUNITS/ALTUNIT is 3 or 4
kSuppressLeadingZero Suppress leading zeros in decimal editing, when LUNITS/ALTUNIT is 2
kSuppressTrailingZero Suppress trailing zeros in decimal editing, when LUNITS/ALTUNIT is 2
kIgnoreUnitMode Ignore the UNITMODE system variable setting and output with spaces
kUseAltUnits Use ALTUNIT/ALTPREC values instead of LUNITS/LUPREC

Description

AcUt

Was this information helpful?