ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Spreadsheet functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Allows you to freeze the display of a row or column in a Spreadsheet control. The frozen rows and columns will remain visible when moving in the worksheet.
It is possible to:
  • freeze one or more columns on the left (or free them).
  • freeze one or more rows at the top (or free them).
Example
// Fige la 1ère ligne
SpreadsheetFreeze(TBLR_MonTableur, 1, 0)

// Fige la 1ère colonne
SpreadsheetFreeze(TBLR_MonTableur, 0, 1)
Syntax
SpreadsheetFreeze(<Spreadsheet control> , <Row> , <Column>)
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
<Row>: Integer
  • Number of the last row to freeze. All the specified rows (from the first one to the specified number) will be frozen.
  • 0 to free the frozen rows.
<Column>: Integer
  • Number of the last column to freeze. All the specified columns (from the first one to the specified number) will be frozen.
  • 0 to free the frozen columns.
Component: wd300obj.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help