GrapeCity.Xaml.Excel
SetRowInfo Method


GrapeCity.Excel Namespace > IExcelReader Interface : SetRowInfo Method
The zero based sheet index used to locate the IExcelWorksheet instance
The zero base row index used to get the row
The inclusive first defined column index in the row
The exclusive last defined column index in the row
The zero based index used to locate the format information which stores in a global section
The height of the row
The outline level of the row
A flag indicate whether the row is collapsed
A flag indicate whether the height of the row is 0
A flag indicate whether the row is unsynced
A flag indicate whether the row should use the specified format index
Set the row information at the specified index.
Syntax
'Declaration
 
Function SetRowInfo( _
   ByVal sheet As Short, _
   ByVal row As Integer, _
   ByVal firstDefinedColumn As Integer, _
   ByVal lastDefinedColumn As Integer, _
   ByVal formatIndex As Short, _
   ByVal height As Double, _
   ByVal outlineLevel As Byte, _
   ByVal collapsed As Boolean, _
   ByVal zeroHeight As Boolean, _
   ByVal unSynced As Boolean, _
   ByVal ghostDirty As Boolean _
) As Boolean
'Usage
 
Dim instance As IExcelReader
Dim sheet As Short
Dim row As Integer
Dim firstDefinedColumn As Integer
Dim lastDefinedColumn As Integer
Dim formatIndex As Short
Dim height As Double
Dim outlineLevel As Byte
Dim collapsed As Boolean
Dim zeroHeight As Boolean
Dim unSynced As Boolean
Dim ghostDirty As Boolean
Dim value As Boolean
 
value = instance.SetRowInfo(sheet, row, firstDefinedColumn, lastDefinedColumn, formatIndex, height, outlineLevel, collapsed, zeroHeight, unSynced, ghostDirty)
bool SetRowInfo( 
   short sheet,
   int row,
   int firstDefinedColumn,
   int lastDefinedColumn,
   short formatIndex,
   double height,
   byte outlineLevel,
   bool collapsed,
   bool zeroHeight,
   bool unSynced,
   bool ghostDirty
)

Parameters

sheet
The zero based sheet index used to locate the IExcelWorksheet instance
row
The zero base row index used to get the row
firstDefinedColumn
The inclusive first defined column index in the row
lastDefinedColumn
The exclusive last defined column index in the row
formatIndex
The zero based index used to locate the format information which stores in a global section
height
The height of the row
outlineLevel
The outline level of the row
collapsed
A flag indicate whether the row is collapsed
zeroHeight
A flag indicate whether the height of the row is 0
unSynced
A flag indicate whether the row is unsynced
ghostDirty
A flag indicate whether the row should use the specified format index

Return Value

true If the row is a valid row, otherwise, false
See Also

Reference

IExcelReader Interface
IExcelReader Members