Share

acdbSetExtnames

C++

Acad::ErrorStatus acdbSetExtnames(
    AcDbDatabase * pDb, 
    bool value
);

File

dbxutil.h

Description

This function sets the specified database's EXTNAMES system variable to value. Returns Acad::eOk if successful. If pDb is NULL, Acad::eInvalidInput is returned.

In a future release, this function may disallow setting the EXTNAMES system variable to false by returning false if value == false. Additionally, a subsequent release may remove this function completely.

Parameters

Parameters Description
pDb Input pointer to the database whose EXTNAMES value will be changed
value Input bool specifying the new EXTNAMES value for the specified database

Was this information helpful?