Gets the frozen row and column count of the specified sheet
Syntax
'Declaration
Sub GetFrozen( _
ByVal As System.Short, _
ByRef As System.Integer, _
ByRef frozenColumnCount As System.Integer, _
ByRef As System.Integer, _
ByRef frozenTrailingColumnCount As System.Integer _
)
'Usage
Dim instance As IExcelWriter
Dim sheet As System.Short
Dim frozenRowCount As System.Integer
Dim frozenColumnCount As System.Integer
Dim frozenTrailingRowCount As System.Integer
Dim frozenTrailingColumnCount As System.Integer
instance.GetFrozen(sheet, frozenRowCount, frozenColumnCount, frozenTrailingRowCount, frozenTrailingColumnCount)
void GetFrozen(
System.short ,
ref System.int ,
ref System.int frozenColumnCount,
ref System.int ,
ref System.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