Spread WPF 17
GrapeCity.Excel Namespace / IExcelWriter Interface / GetOutlineDirection Method
The zero based sheet index.
A flag indicate whether the summary columns to right of details, true if it's right to detail, otherwise, false
A flag indicate whether the summary rows below details, true if it below detail, otherwise, false


In This Topic
    GetOutlineDirection Method
    In This Topic
    Get the summary rows/columns directions
    Syntax
    'Declaration
     
    Sub GetOutlineDirection( _
       ByVal sheet As Integer, _
       ByRef summaryColumnsRightToDetail As Boolean, _
       ByRef summaryRowsBelowDetail As Boolean _
    ) 
    'Usage
     
    Dim instance As IExcelWriter
    Dim sheet As Integer
    Dim summaryColumnsRightToDetail As Boolean
    Dim summaryRowsBelowDetail As Boolean
     
    instance.GetOutlineDirection(sheet, summaryColumnsRightToDetail, summaryRowsBelowDetail)
    void GetOutlineDirection( 
       int sheet,
       ref bool summaryColumnsRightToDetail,
       ref bool summaryRowsBelowDetail
    )

    Parameters

    sheet
    The zero based sheet index.
    summaryColumnsRightToDetail
    A flag indicate whether the summary columns to right of details, true if it's right to detail, otherwise, false
    summaryRowsBelowDetail
    A flag indicate whether the summary rows below details, true if it below detail, otherwise, false
    See Also