Share

AcDbTable::getBlockAttributeValue

C++

Acad::ErrorStatus getBlockAttributeValue(
    int row, 
    int col, 
    const AcDbObjectId& attdefId, 
    ACHAR*& value
) const;

Description

Deprecated. Gets the attribute value from the block cell using the specified object ID key. If there is no overridden attribute value, it returns the default attribute value defined in the original AcDbAttributeDefinition object.

Parameters

Parameters Description
row Input integer specifying the zero-based row index for the cell
col Input integer specifying the zero-based column index for the cell
attdefId Input object ID of an AcDbAttributeDefinition object
value Input character string for attribute value

Returns

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

Links

AcDbTable

Use Instead

ACDBCORE2D_PORT AcString getBlockAttributeValue(int row, int col, int nContent, const AcDbObjectId& attdefId) const;

Was this information helpful?