Share

AcDbTable::getCustomData

C++

Acad::ErrorStatus getCustomData(
    int nRow, 
    int nCol, 
    const ACHAR* pszKey, 
    AcValue* pData
) const;

Description

Gets the custom data value set in cell, row, or column as key-value pairs.

Returns Acad::eOk if successful; otherwise, returns an AutoCAD error status.

To specify cell pass a valid row and column indices; to specify row pass a valid row index and pass -1 as column index; to specify column pass a valid column index and pass -1 as row index.

Parameters

Parameters Description
nRow nput row index. This can be -1. See remarks.
nCol Input column index. This can be -1. See remarks.
pszKey Input key to retrieve the custom data AcValue* : Output pointer to store the custom data

Links

AcDbTable

Was this information helpful?