ExcelWorksheetInsertRow Method (Int32, Boolean, Boolean) |
Inserts a row with style at the specified one based in worksheet. If inheritStyle parameter is false the new row will have the
default style of the worksheet. If inheritStyle is true the new row will inherit the style from the previous row if
fromPrevious parameter is true or from the next row if the fromPrevious parameter is false.
Namespace:
ExpertXls.ExcelLib
Assembly:
expertxls (in expertxls.dll) Version: 7.0.0
Syntax public void InsertRow(
int rowIndex,
bool inheritStyle,
bool fromPrevious
)
Public Sub InsertRow (
rowIndex As Integer,
inheritStyle As Boolean,
fromPrevious As Boolean
)
Parameters
- rowIndex
- Type: SystemInt32
The one based index of the new row. - inheritStyle
- Type: SystemBoolean
A flag indicating if the new column should inherit the style from the previous or the
next row function of the fromPrevious parameter. - fromPrevious
- Type: SystemBoolean
A flag indicating if the style should be inherited from the previous or from the next row.
This flag has effect only when inheritStyle is true.
See Also