Gets whether the specified sheet should show formula, show zeros, show gridlines, show row column headers, and whether its column is right to left.
Syntax
'Declaration
Sub GetDisplayElements( _
ByVal As Short, _
ByRef As Boolean, _
ByRef As Boolean, _
ByRef As Boolean, _
ByRef showRowColumnHeader As Boolean, _
ByRef rightToLeftColumns As Boolean _
)
'Usage
Dim instance As IExcelWriter
Dim sheet As Short
Dim showFormula As Boolean
Dim showZeros As Boolean
Dim showGridLine As Boolean
Dim showRowColumnHeader As Boolean
Dim rightToLeftColumns As Boolean
instance.GetDisplayElements(sheet, showFormula, showZeros, showGridLine, showRowColumnHeader, rightToLeftColumns)
void GetDisplayElements(
short ,
ref bool ,
ref bool ,
ref bool ,
ref bool showRowColumnHeader,
ref 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