Aspose::Cells::Worksheet::FreezePanes method

Worksheet::FreezePanes(int32_t, int32_t, int32_t, int32_t) method

Freezes panes at the specified cell in the worksheet.

void Aspose::Cells::Worksheet::FreezePanes(int32_t row, int32_t column, int32_t freezedRows, int32_t freezedColumns)
ParameterTypeDescription
rowint32_tRow index.
columnint32_tColumn index.
freezedRowsint32_tNumber of visible rows in top pane, no more than row index.
freezedColumnsint32_tNumber of visible columns in left pane, no more than column index.

Remarks

Row index and column index cannot all be zero. Number of rows and number of columns also cannot all be zero.

The first two parameters specify the froze position and the last two parameters specify the area frozen on the left top pane.

See Also

Worksheet::FreezePanes(const U16String&, int32_t, int32_t) method

Freezes panes at the specified cell in the worksheet.

void Aspose::Cells::Worksheet::FreezePanes(const U16String &cellName, int32_t freezedRows, int32_t freezedColumns)
ParameterTypeDescription
cellNameconst U16String&Cell name.
freezedRowsint32_tNumber of visible rows in top pane, no more than row index.
freezedColumnsint32_tNumber of visible columns in left pane, no more than column index.

Remarks

Row index and column index cannot all be zero. Number of rows and number of columns also cannot all be zero.

See Also

Worksheet::FreezePanes(const char16_t*, int32_t, int32_t) method

Freezes panes at the specified cell in the worksheet.

void Aspose::Cells::Worksheet::FreezePanes(const char16_t *cellName, int32_t freezedRows, int32_t freezedColumns)
ParameterTypeDescription
cellNameconst char16_t*Cell name.
freezedRowsint32_tNumber of visible rows in top pane, no more than row index.
freezedColumnsint32_tNumber of visible columns in left pane, no more than column index.

Remarks

Row index and column index cannot all be zero. Number of rows and number of columns also cannot all be zero.

See Also