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
Deletes a worksheet from a Spreadsheet control found in a window.
Example
// Deletes all worksheets except for the first one
FOR I = 1 TO PSHEET_MySpreadsheet.NbWorksheet TO 2 STEP -1
PSHEET_MySpreadsheet.DeleteWorksheet(i)
END
Syntax

Deleting a worksheet identified by its number Hide the details

<Spreadsheet control>.DeleteWorksheet([<Worksheet number>])
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
<Worksheet number>: Optional integer
Number of the worksheet to delete. If this parameter is not specified, the current worksheet is deleted.

Deleting a worksheet identified by its name Hide the details

<Spreadsheet control>.DeleteWorksheet(<Worksheet name>)
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
<Worksheet name>: Character string
Name of the worksheet to delete.
Remarks
  • If there is only one worksheet left in the Spreadsheet control, <Spreadsheet>.DeleteWorksheet has no effect.
  • This function can only be used on a Spreadsheet control found in a window.
Component: wd290obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help