AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Hoja de cálculo
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
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.
You can:
  • freeze one or more columns on the left (or free them).
  • freeze one or more rows at the top (or free them).
Example
// Freezes the 1st row
SpreadsheetFreeze(PSHEET_MySpreadsheet, 1, 0)
 
// Freezes the 1st column
SpreadsheetFreeze(PSHEET_MySpreadsheet, 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: wd290obj.dll
Versión mínima requerida
  • Versión 22
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local