Set serials properties to specified columns.
Syntax
'Declaration
Sub SetColumnInfo( _
ByVal As System.Short, _
ByVal columnFirst As System.Short, _
ByVal columnLast As System.Short, _
ByVal As System.Short, _
ByVal As System.Double, _
ByVal As System.Boolean, _
ByVal As System.Byte, _
ByVal As System.Boolean _
)
'Usage
Dim instance As IExcelReader
Dim sheet As System.Short
Dim columnFirst As System.Short
Dim columnLast As System.Short
Dim formatIndex As System.Short
Dim width As System.Double
Dim hidden As System.Boolean
Dim outlineLevel As System.Byte
Dim collapsed As System.Boolean
instance.SetColumnInfo(sheet, columnFirst, columnLast, formatIndex, width, hidden, outlineLevel, collapsed)
void SetColumnInfo(
System.short ,
System.short columnFirst,
System.short columnLast,
System.short ,
System.double ,
System.bool ,
System.byte ,
System.bool
)
Parameters
- sheet
- The zero based sheet index used to locate the IExcelWorksheet instance
- columnFirst
- The zero based first column index
- columnLast
- The zero based last column index
- formatIndex
- The zero based index used to locate format settings stored in a global section
- width
- The column width
- hidden
- A flag used to indicate whether the column is hidden
- outlineLevel
- A byte value used to set the column outline level.
- collapsed
- A flag used to indicate whether the column is collapsed.
See Also