Spread WPF 17
GrapeCity.Excel Namespace / IExcelReader Interface / SetRowColumnGutters Method
The zero based sheet index used to locate the IExcelWorksheet instance
The value for the row gutter
The value for the column gutter
The value for the max outline level of row
The value for the max outline level of column


In This Topic
    SetRowColumnGutters Method
    In This Topic
    Set the size of row and column gutters which is measured in screen units.
    Syntax
    'Declaration
     
    Sub SetRowColumnGutters( _
       ByVal sheet As Short, _
       ByVal rowGutter As Short, _
       ByVal columnGutter As Short, _
       ByVal rowMaxOutlineLevel As Short, _
       ByVal columnMaxOutlineLevel As Short _
    ) 
    'Usage
     
    Dim instance As IExcelReader
    Dim sheet As Short
    Dim rowGutter As Short
    Dim columnGutter As Short
    Dim rowMaxOutlineLevel As Short
    Dim columnMaxOutlineLevel As Short
     
    instance.SetRowColumnGutters(sheet, rowGutter, columnGutter, rowMaxOutlineLevel, columnMaxOutlineLevel)
    void SetRowColumnGutters( 
       short sheet,
       short rowGutter,
       short columnGutter,
       short rowMaxOutlineLevel,
       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