Share

AcDbDatabase::getDimpost

C++

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

Description

This function creates a copy of the database's DIMPOST value and set pOutput to point the copy. The caller is responsible for deallocating the returned string using 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::dimpost() instead.

Parameters

Parameters Description
pOutput Output DIMPOST value

Links

AcDbDatabase Class

Use Instead

virtual const ACHAR * dimpost();

Was this information helpful?