ExcelSetRowInfo Method (IExcelXml)
In This Topic
Sets the Excel XML row information.
Syntax
'Declaration
Function ExcelSetRowInfo( _
ByVal As Short, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Double, _
ByVal As Boolean, _
ByVal As Byte, _
ByVal As Boolean _
) As Boolean
'Usage
Dim instance As IExcelXml
Dim sheet As Short
Dim row As Integer
Dim colFirstDef As Integer
Dim colLastDefPlus1 As Integer
Dim styleIndex As Integer
Dim height As Double
Dim hidden As Boolean
Dim outlineLevel As Byte
Dim collapsed As Boolean
Dim value As Boolean
value = instance.ExcelSetRowInfo(sheet, row, colFirstDef, colLastDefPlus1, styleIndex, height, hidden, outlineLevel, collapsed)
bool ExcelSetRowInfo(
short ,
int ,
int ,
int ,
int ,
double ,
bool ,
byte ,
bool
)
Parameters
- sheet
- Sheet index
- row
- Row index
- colFirstDef
- Index of column first definition
- colLastDefPlus1
- Index of column first definition plus one
- styleIndex
- Style index
- height
- Height
- hidden
- Whether row is hidden
- outlineLevel
- Outline level
- collapsed
- Whether collapsed
See Also