[]
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)
Public Function AddUnboundSheet(Optional name As String = Nothing, Optional rowCount As Integer = 200, Optional columnCount As Integer = 20) As FlexSheetBuilder
| 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)
Public Function AddUnboundSheet(build As Action(Of UnboundSheetBuilder)) As FlexSheetBuilder
| Type | Name | Description |
|---|---|---|
| Action<UnboundSheetBuilder> | build | The build action |
| Type | Description |
|---|---|
| FlexSheetBuilder | Current FlexSheet builder |