ExcelSetRowInfo Method (IExcelXml4)
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, _
ByVal As Boolean _
) As Boolean
'Usage
Dim instance As IExcelXml4
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 customHeight As Boolean
Dim value As Boolean
value = instance.ExcelSetRowInfo(sheet, row, colFirstDef, colLastDefPlus1, styleIndex, height, hidden, outlineLevel, collapsed, customHeight)
bool ExcelSetRowInfo(
short ,
int ,
int ,
int ,
int ,
double ,
bool ,
byte ,
bool ,
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
- customHeight
- Whether the row height is calculated automatically.
false
indicates that row height will be calculated automatically.
See Also