[]
Add an unbound sheet. It will be put after the loaded Workbook or xlsx file.
public FlexSheetBuilder AddUnboundSheet(string name = null, int rowCount = 200, int columnCount = 20)
Type | Name | Description |
---|---|---|
string | name | The sheet name |
int | rowCount | The number of rows in the sheet. |
int | columnCount | The number of columns in the sheet. |
Type | Description |
---|---|
FlexSheetBuilder | Current FlexSheet builder |
Add an unbound sheet. It will be put after the loaded Workbook or xlsx file.
public FlexSheetBuilder AddUnboundSheet(Action<UnboundSheetBuilder> build)
Type | Name | Description |
---|---|---|
Action<UnboundSheetBuilder> | build | The build action |
Type | Description |
---|---|
FlexSheetBuilder | Current FlexSheet builder |