C++
bool acdbSetExemptCheckFlag( AcDbObject * pObj, int bitFlags );
File
dbxutil.h
Description
This global function allows application to set an integer value for bitFlags. The bitFlags specify 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 | Input integer value of bitFlags |