IXlRow.CreateCell(Int32) Method
In This Article
Creates a new cell at the intersection of the current row and the specified column.
Namespace: DevExpress.Export.Xl
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
column |
Int32 | An integer specifying the zero-based index of the column where the created cell should be located. |
#Returns
Type | Description |
---|---|
IXl |
An IXl |
#Remarks
Note
When you finish working with the IXl
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 IXl
object within the using statement (Using block in Visual Basic).
See Also