Share

writeString Method

Overload List

Method Description
AcDbDxfFiler::writeString (AcDb::DxfCode, ACHAR*) The implementation of this function should follow that of the ObjectARX internal filers. It should:
  • Check the current filer status. If it's Acad::eOk, then continue, or else return the current status.
  • Write out the AcDb::DxfCode in code.
See the AcDbDxfFiler DXF Group Codes section for information on which DXF group codes are valid for strings.
  • 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).
AcDbDxfFiler::writeString (AcDb::DxfCode, AcString&) The implementation of this function should follow that of the ObjectARX internal filers. It should:
  • Check the current filer status. If it's Acad::eOk, then continue, or else return the current status.
  • Write out the AcDb::DxfCode in code.
See the AcDbDxfFiler DXF Group Codes section for information on which DXF group codes are valid for strings.
  • 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).

Was this information helpful?