Gets the row and column gutter settings of the specified sheet.
Syntax
'Declaration
Sub GetGutters( _
ByVal As System.Short, _
ByRef As System.Integer, _
ByRef columnMaxOutLineLevel As System.Integer _
)
'Usage
Dim instance As IExcelWriter
Dim sheet As System.Short
Dim rowMaxOutLineLevel As System.Integer
Dim columnMaxOutLineLevel As System.Integer
instance.GetGutters(sheet, rowMaxOutLineLevel, columnMaxOutLineLevel)
void GetGutters(
System.short ,
ref System.int ,
ref System.int columnMaxOutLineLevel
)
Parameters
- sheet
- the zero based sheet index used to locate the IExcelWorksheet instance
- rowMaxOutLineLevel
- Maximum level of row gutter
- columnMaxOutLineLevel
- Maximum level of column gutter
See Also