'Declaration Function SetRowInfo( _ ByVal sheet As System.Short, _ ByVal row As System.Integer, _ ByVal firstDefinedColumn As System.Integer, _ ByVal lastDefinedColumn As System.Integer, _ ByVal formatIndex As System.Short, _ ByVal height As System.Double, _ ByVal outlineLevel As System.Byte, _ ByVal collapsed As System.Boolean, _ ByVal zeroHeight As System.Boolean, _ ByVal unSynced As System.Boolean, _ ByVal ghostDirty As System.Boolean _ ) As System.Boolean
'Usage Dim instance As IExcelReader Dim sheet As System.Short Dim row As System.Integer Dim firstDefinedColumn As System.Integer Dim lastDefinedColumn As System.Integer Dim formatIndex As System.Short Dim height As System.Double Dim outlineLevel As System.Byte Dim collapsed As System.Boolean Dim zeroHeight As System.Boolean Dim unSynced As System.Boolean Dim ghostDirty As System.Boolean Dim value As System.Boolean value = instance.SetRowInfo(sheet, row, firstDefinedColumn, lastDefinedColumn, formatIndex, height, outlineLevel, collapsed, zeroHeight, unSynced, ghostDirty)
System.bool SetRowInfo( System.short sheet, System.int row, System.int firstDefinedColumn, System.int lastDefinedColumn, System.short formatIndex, System.double height, System.byte outlineLevel, System.bool collapsed, System.bool zeroHeight, System.bool unSynced, System.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