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
Returns the list of names that identify a cell in a Spreadsheet control.
Example
arrName is array of strings
arrName = SpreadsheetListName(PSHEET_MySpreadsheet)
FOR EACH sDesc1Name OF arrName
sName is string = ExtractString(sDesc1Name, 1, TAB)
sCell is string = ExtractString(sDesc1Name, 2, TAB)
sScope is string = ExtractString(sDesc1Name, 3, TAB)
sComment is string = ExtractString(sDesc1Name, 4, TAB)
Trace("Name: " + sName + "; " + "Cell: " + sCell + "; " + ...
 "Scope: " + sScope + ";" + "Comment: " + sComment)
END
Syntax
<Result> = SpreadsheetListName(<Spreadsheet control>)
<Result>: Array
Array of strings containing the description of different cell names found in the control. Each array element has the following format:
<Name>+TAB+<Cell>+TAB+<Scope>+TAB+<Comment>
where:
  • <Name> corresponds to the cell name.
  • <Cell> corresponds to the cell identified by the name.
  • <Scope> corresponds to the scope of cell name:
    • 0 if the scope corresponds to the workbook,
    • 1 if the scope corresponds to the worksheet.
  • <Comment> corresponds to the comment associated with the cell name.
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
Component: wd290obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help