Winnovative Excel Library

ExcelWorksheetInsertColumn Method (Int32, Boolean, Boolean)

Winnovative Excel Library Documentation
Inserts a column with style at the specified one based index in worksheet. If inheritStyle parameter is false the new column will have the default style of the worksheet. If inheritStyle is true the new column will inherit the style from the previous column if fromPrevious parameter is true or from the next column 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 InsertColumn(
	int columnIndex,
	bool inheritStyle,
	bool fromPrevious
)

Parameters

columnIndex
Type: SystemInt32
The one based index of the new column.
inheritStyle
Type: SystemBoolean
A flag indicating if the new column should inherit the style from the previous or the next column function of the fromPrevious parameter.
fromPrevious
Type: SystemBoolean
A flag indicating if the style should be inherited from the previous or from the next column. This flag has effect only when inheritStyle is true.
See Also

Reference