Share

AcDbDatabase::getDimapost

C++

Acad::ErrorStatus getDimapost(
    ACHAR*& pOutput
) const;

Description

This function creates a copy of the database's DIMAPOST value and sets pOutput to point to the copy. The caller is responsible for deallocating the returned string with acutDelString() or equivalent.

Returns Acad::eOk if successful.

Note

This function has been deprecated and will be removed in a future release. Applications should use AcDbDatabase::dimapost() instead.

Parameters

Parameters Description
pOutput Output DIMAPOST value

Links

AcDbDatabase Class

Use Instead

virtual const ACHAR * dimapost();

Was this information helpful?