ExcelWorksheetInsertColumn Method (Int32, Boolean, Boolean) |
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:
ExpertXls.ExcelLib
Assembly:
expertxls (in expertxls.dll) Version: 7.0.0
Syntax public void InsertColumn(
int columnIndex,
bool inheritStyle,
bool fromPrevious
)
Public Sub InsertColumn (
columnIndex As Integer,
inheritStyle As Boolean,
fromPrevious As Boolean
)
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