Set whether the specified sheet should show formula, show zeros, show gridline, show row column header, and whether its column is right to left.
Syntax
'Declaration
Sub SetDisplayElements( _
ByVal As System.Short, _
ByVal As System.Boolean, _
ByVal As System.Boolean, _
ByVal As System.Boolean, _
ByVal showRowColumnHeader As System.Boolean, _
ByVal rightToLeftColumns As System.Boolean _
)
'Usage
Dim instance As IExcelReader
Dim sheet As System.Short
Dim showFormula As System.Boolean
Dim showZeros As System.Boolean
Dim showGridLine As System.Boolean
Dim showRowColumnHeader As System.Boolean
Dim rightToLeftColumns As System.Boolean
instance.SetDisplayElements(sheet, showFormula, showZeros, showGridLine, showRowColumnHeader, rightToLeftColumns)
void SetDisplayElements(
System.short ,
System.bool ,
System.bool ,
System.bool ,
System.bool showRowColumnHeader,
System.bool rightToLeftColumns
)
Parameters
- sheet
- The zero based sheet index used to locate the IExcelWorksheet instance
- showFormula
- A flag indicate whether the specified sheet should show formula
- showZeros
- A flag indicate whether the specified sheet should show zero
- showGridLine
- A flag indicate whether the specified sheet should show gridline
- showRowColumnHeader
- A flag indicate whether the specified sheet should show row column header
- rightToLeftColumns
- A flag indicate whether the column of the specified sheet is right to left
See Also