Winnovative Excel Library

ExcelWorksheetInsertRow Method (Int32, Boolean, Boolean)

Winnovative Excel Library Documentation
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:  Winnovative.ExcelLib
Assembly:  wnvxls (in wnvxls.dll) Version: 10.0.0.0 (10.0.0.0)
Syntax

public void InsertRow(
	int rowIndex,
	bool inheritStyle,
	bool fromPrevious
)

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

Reference