AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Hoja de cálculo
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Returns the list of names that identify a cell in a Spreadsheet control.
Ejemplo
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.
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 23
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local