Skip to main content

IXlRow.CreateCell(Int32) Method

Creates a new cell at the intersection of the current row and the specified column.

Namespace: DevExpress.Export.Xl

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

IXlCell CreateCell(
    int columnIndex
)

Parameters

Name Type Description
columnIndex Int32

An integer specifying the zero-based index of the column where the created cell should be located.

Returns

Type Description
IXlCell

An IXlCell object that is the newly created cell.

Remarks

Note

When you finish working with the IXlCell object, call the Dispose method to release all the resources used by the object. Otherwise, generated content is not written to the output file. You can also modify the IXlCell object within the using statement (Using block in Visual Basic).

See Also