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
Lists all the comments on the current worksheet of a Spreadsheet control.
Example
// Make all comments visible
FOR EACH Comment OF SpreadsheetListComment(PSHEET_MySpreadsheet)
Comment..Visible = True
END
// Delete all comments
FOR EACH Comment OF SpreadsheetListComment(PSHEET_MySpreadsheet)
Comment..Text = ""
END
Syntax
<Result> = SpreadsheetListComment(<Spreadsheet control>)
<Result>: Array
Array containing the different comments with their characteristics.
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
Remarks
  • Modifying a comment in the array also modifies it in the Spreadsheet control.
  • Adding or deleting a comment in the array has no effect on the comments in the Spreadsheet control.
  • If there is no comment in the worksheet, the array is empty.
Component: wd290obj.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help