TableSectionData.InsertImage Method

TableSectionDataInsertImage Method

Inserts a image in the given cell.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public void InsertImage(
	int nRow,
	int nColumn,
	ElementId imageSymbolId
)
Public Sub InsertImage ( 
	nRow As Integer,
	nColumn As Integer,
	imageSymbolId As ElementId
)
public:
void InsertImage(
	int nRow, 
	int nColumn, 
	ElementId^ imageSymbolId
)
member InsertImage : 
        nRow : int * 
        nColumn : int * 
        imageSymbolId : ElementId -> unit 

Parameters

nRow  Int32
The given row index.
nColumn  Int32
The given column index.
imageSymbolId  ElementId
The element id of the image symbol.
Exceptions
ExceptionCondition
ArgumentException The given row number nRow is invalid. -or- The given column number nColumn is invalid. -or- The image symbol id doesn't represent a valid image symbol element.
ArgumentNullException A non-optional argument was null
See Also