Share

AcDbDwgFiler::writeBoolean

C++

virtual Acad::ErrorStatus writeBoolean(
    Adesk::Boolean val
);

Description

Deprecated. The implementation of this function should follow that of the ObjectARX internal filers. It should:

  • check the current filer status. If it is Acad::eOk, then continue, or else return the current status.
  • write out val (an int). val should be either 0 or 1. If it is anything other than 0, then 1 should be written out instead of its actual value.
  • return an Acad::ErrorStatus value indicating the success or failure of the operation (use Acad::eOk to indicate success).

Parameters

Parameters Description
val Adesk::Boolean (an int) to be written out

Links

AcDbDwgFiler

Use Instead

virtual Acad::ErrorStatus writeBool(bool val) = 0;

Was this information helpful?