ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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
The CurrentWorksheet property is used to get and change the current worksheet in a Spreadsheet control.
Example
// Add a worksheet
nWorksheet is int
nWorksheet = SpreadsheetAddWorksheet(PSHEET_MySpreadsheet)
// Select the worksheet
PSHEET_MySpreadsheet.CurrentWorksheet = nWorksheet
Syntax

Finding out the position of the current worksheet Hide the details

<Result> = <Spreadsheet control>.CurrentWorksheet
<Result>: Integer
Position of the current worksheet.
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.

Modifying the current worksheet in a Spreadsheet control Hide the details

<Spreadsheet control>.CurrentWorksheet = <New value>
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
<New value>: Integer
Position of the worksheet that will become the current worksheet.
Remarks
  • If the Spreadsheet control does not manage the multiple worksheets:
    • the modification of the current worksheet has no effect,
    • the position of the current worksheet is always set to 1.
  • The Spreadsheet control management functions always handle the data in the current worksheet.
  • The syntaxes for accessing the cells always handle the current worksheet.
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help