Spread WPF 17
GrapeCity.Excel Namespace / IExcelWriter Interface / GetFrozen Method
The zero based sheet index used to locate the IExcelWorksheet instance
Number of fixed or frozen leading rows
Number of fixed or frozen leading columns
Number of fixed or frozen trailing rows
Number of fixed or frozen trailing columns


In This Topic
    GetFrozen Method
    In This Topic
    Gets the frozen row and column count of the specified sheet
    Syntax
    'Declaration
     
    Sub GetFrozen( _
       ByVal sheet As Short, _
       ByRef frozenRowCount As Integer, _
       ByRef frozenColumnCount As Integer, _
       ByRef frozenTrailingRowCount As Integer, _
       ByRef frozenTrailingColumnCount As Integer _
    ) 
    'Usage
     
    Dim instance As IExcelWriter
    Dim sheet As Short
    Dim frozenRowCount As Integer
    Dim frozenColumnCount As Integer
    Dim frozenTrailingRowCount As Integer
    Dim frozenTrailingColumnCount As Integer
     
    instance.GetFrozen(sheet, frozenRowCount, frozenColumnCount, frozenTrailingRowCount, frozenTrailingColumnCount)
    void GetFrozen( 
       short sheet,
       ref int frozenRowCount,
       ref int frozenColumnCount,
       ref int frozenTrailingRowCount,
       ref int frozenTrailingColumnCount
    )

    Parameters

    sheet
    The zero based sheet index used to locate the IExcelWorksheet instance
    frozenRowCount
    Number of fixed or frozen leading rows
    frozenColumnCount
    Number of fixed or frozen leading columns
    frozenTrailingRowCount
    Number of fixed or frozen trailing rows
    frozenTrailingColumnCount
    Number of fixed or frozen trailing columns
    See Also