IXlRow.BeginTable(IEnumerable<String>, Boolean, XlCellFormatting) Method
In This Article
Starts generating a table in the worksheet.
Namespace: DevExpress.Export.Xl
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
IXlTable BeginTable(
IEnumerable<string> columnNames,
bool hasHeaderRow,
XlCellFormatting headerRowFormatting
)
#Parameters
Name | Type | Description |
---|---|---|
column |
IEnumerable<String> | A list of string values representing the unique captions for table columns. |
has |
Boolean | A Boolean value indicating whether the header row is displayed for the table. |
header |
Xl |
An Xl |
#Returns
Type | Description |
---|---|
IXl |
An IXl |
#Remarks
Use the IXlRow.BeginTable - IXlRow.EndTable method pair to format a cell range containing related data as a table. For details on how to generate a table and adjust its properties, refer to the Tables section for examples.
See Also