|
|
|
|
|
SpreadsheetListName (Function) In french: TableurListeNom Returns the list of names that identify a cell in a Spreadsheet control. tabNom is array of strings
tabNom = SpreadsheetListName(TBLR_MonTableur)
FOR EACH sDesc1Nom OF tabNom
sNom is string = ExtractString(sDesc1Nom, 1, TAB)
sCellule is string = ExtractString(sDesc1Nom, 2, TAB)
sPortée is string = ExtractString(sDesc1Nom, 3, TAB)
sCommentaire is string = ExtractString(sDesc1Nom, 4, TAB)
Trace("Nom : " + sNom + "; " + "Cellule : " + sCellule + "; " + ...
"Portée : " + sPortée + ";" + "Commentaire : " + sCommentaire)
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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|