|
|
|
|
|
SpreadsheetListName (Function) Returns the list of names that identify a cell in a Spreadsheet control. 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: " + sNom + "; " + "Cell: " + sCellule + "; " + ...
"Range: " + sRange + ";" + "Comment: " + sComment)
END
Sintaxis
<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.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|