Share

writeString Method

Overload List

Method Description
AcDbDwgFiler::writeString (ACHAR*) 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 the string pointed to by pVal.
  • return an Acad::ErrorStatus value indicating the success or failure of the operation (use Acad::eOk to indicate success).
Note When using the ObjectARX internal filers (that is, not a custom filer), this method does not do anything about platform-dependent byte order.
AcDbDwgFiler::writeString (AcString&) 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 the string pointed to by pVal.
  • return an Acad::ErrorStatus value indicating the success or failure of the operation (use Acad::eOk to indicate success).
Note When using the ObjectARX internal filers (that is, not a custom filer), this method does not do anything about platform-dependent byte order.

Was this information helpful?