Set the size of row and column gutters which is measured in screen units.
Syntax
'Declaration
Sub SetRowColumnGutters( _
ByVal As System.Short, _
ByVal As System.Short, _
ByVal columnGutter As System.Short, _
ByVal As System.Short, _
ByVal columnMaxOutlineLevel As System.Short _
)
'Usage
Dim instance As IExcelReader
Dim sheet As System.Short
Dim rowGutter As System.Short
Dim columnGutter As System.Short
Dim rowMaxOutlineLevel As System.Short
Dim columnMaxOutlineLevel As System.Short
instance.SetRowColumnGutters(sheet, rowGutter, columnGutter, rowMaxOutlineLevel, columnMaxOutlineLevel)
void SetRowColumnGutters(
System.short ,
System.short ,
System.short columnGutter,
System.short ,
System.short columnMaxOutlineLevel
)
Parameters
- sheet
- The zero based sheet index used to locate the IExcelWorksheet instance
- rowGutter
- The value for the row gutter
- columnGutter
- The value for the column gutter
- rowMaxOutlineLevel
- The value for the max outline level of row
- columnMaxOutlineLevel
- The value for the max outline level of column
See Also