Add Method

Office Open XML

Create a table on the supplied range

Namespace:  OfficeOpenXml.Table
Assembly:  EPPlus (in EPPlus.dll) Version: 3.0.0.1 (3.0.0.1)

Syntax

C#
public ExcelTable Add(
	ExcelAddressBase Range,
	string Name
)
Visual Basic (Declaration)
Public Function Add ( _
	Range As ExcelAddressBase, _
	Name As String _
) As ExcelTable
Visual C++
public:
ExcelTable^ Add(
	ExcelAddressBase^ Range, 
	String^ Name
)

Parameters

Range
Type: OfficeOpenXml..::.ExcelAddressBase
The range address including header and total row
Name
Type: System..::.String
The name of the table. Must be unique

Return Value

The table object

See Also