Share

AcDbTable::getDataLink

C++

AcDbObjectId getDataLink(
    int nRow, 
    int nCol
) const;

Description

This function gets the id of the data link if the specified cell is linked to a data source using a data link.

This function may be called on any of the cells in a linked range.

Returns the id of the data link. Returns null id if the cell is not linked using a data link.

Parameters

Parameters Description
nRow Input row index. It should be more than or equal to 0 and less than the number of rows
nCol Input column index. It should be more than or equal to 0 and less than the number of columns

Links

AcDbTable

Was this information helpful?