[]
Use a worksheet and it's range infos to create a RangeTemplateCellType.
public RangeTemplateCellType(IWorksheet worksheet, int row = 0, int column = 0, int rowCount = 0, int columnCount = 0)
Public Sub New(worksheet As IWorksheet, Optional row As Integer = 0, Optional column As Integer = 0, Optional rowCount As Integer = 0, Optional columnCount As Integer = 0)
Type | Name | Description |
---|---|---|
IWorksheet | worksheet | An IWorksheet object that used to be referenced. The sheet could be an individual sheet outside the workbook. |
int | row | the template scope start row. |
int | column | the template scope start column. |
int | rowCount | the template scope row count. |
int | columnCount | the template scope column count. |
Use the range to create a RangeTemplateCellType.
public RangeTemplateCellType(IRange range)
Public Sub New(range As IRange)
Type | Name | Description |
---|---|---|
IRange | range | An IRange object that used to be referenced. |