ExcelSetColInfo Method (IExcelXml)
In This Topic
Sets the Excel XML column information.
Syntax
'Declaration
Function ExcelSetColInfo( _
ByVal As Short, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Double, _
ByVal As Boolean, _
ByVal As Byte, _
ByVal As Boolean, _
ByVal As Boolean _
) As Boolean
'Usage
Dim instance As IExcelXml
Dim sheet As Short
Dim colFirst As Integer
Dim colLast As Integer
Dim styleId As Integer
Dim width As Double
Dim hidden As Boolean
Dim outlineLevel As Byte
Dim collapsed As Boolean
Dim needExtend As Boolean
Dim value As Boolean
value = instance.ExcelSetColInfo(sheet, colFirst, colLast, styleId, width, hidden, outlineLevel, collapsed, needExtend)
bool ExcelSetColInfo(
short ,
int ,
int ,
int ,
double ,
bool ,
byte ,
bool ,
bool
)
Parameters
- sheet
- Sheet index
- colFirst
- First column index
- colLast
- Last column index
- styleId
- Style identifier index
- width
- Width
- hidden
- Whether column is hidden
- outlineLevel
- Outline level
- collapsed
- Whether collapsed
- needExtend
- Whether need to extend
See Also