Share

CrSpMode

C++

enum CrSpMode {
  kCrEndsInput = true,
  kCrSpEndsInput = false
};

File

acsymutl.h

Description

This enumerated type is a mnemonic alternative to passing true and false to the AcEdSymbolUtilities 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 AcEdSymUtil instead of the full, longer name, such as AcEdSymUtil::kCrEndsInput.

Was this information helpful?