ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Spreadsheet functions
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
Selects a worksheet (identified by its name) in a Spreadsheet control.
Example
// [Go to Worksheet] button
SpreadsheetSelectWorksheet(PSHEET_MySpreadsheet, EDT_NameWorksheet_To_Select)
IF ErrorOccurred = True THEN
Error(ErrorInfo())
ELSE
STC_MyWorksheet = PSHEET_MySpreadsheet.CurrentWorksheet
END
Syntax
SpreadsheetSelectWorksheet(<Spreadsheet control> , <Worksheet>)
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
<Worksheet>: Character string
Name of the worksheet to select.
Remarks
  • The subscript of the current worksheet is returned by CurrentWorksheet.
  • The name of the current worksheet is returned by WorksheetName.
  • If the worksheet does not exist, the function triggers a non-fatal error: the ErrorOccurred variable is set to True and ErrorInfo returns the details of the error.
  • This function can only be used on a Spreadsheet control found in a window.
Component: wd290obj.dll
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/06/2023

Send a report | Local help