Share

CompatibilityMode

C++

enum CompatibilityMode {
  kExtendedNames = true,
  kPreExtendedNames = false
};

File

dbsymutl.h

Description

This enumerated type is a mnemonic alternative to passing true and false to the AcDbSymbolUtilities functions that accept a Boolean argument. This allows your code to better document the meaning of the Boolean argument.

When using these enumerated constants, you can use the namespace alias AcDbSymUtil instead of the full, longer name, such as AcDbSymUtil::kExtendedNames.

Was this information helpful?