Share

acdbGetExemptCheckFlag

C++

bool acdbGetExemptCheckFlag(
    AcDbObject * pObj, 
    int& bitFlags
);

File

dbxutil.h

Description

This global function allows application to get the integer value of bitFlags. The bitFlags specifies bits to control CAD Standards to skip pObj for standard checking.

bitFlags = 0x00: No exemption.

bitFlags = 0x01: Exempt from CAD Standards check.

bitFlags = 0x02: For future use.

Returns true if successful. Otherwise, it returns false.

Parameters

Parameters Description
pObj Input pointer to an AcDbObject, including AcDbDimStyleTableRecord, AcDbLinetypeTableRecord, AcDbLayerTableRecord, and so on
bitFlags Output integer value of bitFlags

Was this information helpful?