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
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Returns various information about the sort performed in a Spreadsheet control.
Ejemplo
// Montre la zone qui va être triée
sSel is string 
sSel = SpreadsheetGetSortInfo(TBLR_Tableur, psheetInfoSortSelection) 
IF sSel = "" THEN
RETURN // non triable
END
sMin is string = ExtractString(sSel, 1, ":")
sMax is string = ExtractString(sSel, 2, ":")

// Sélectionne la zone
SpreadsheetSelectPlus(TBLR_Tableur, sMin, sMax)
Sintaxis
<Result> = SpreadsheetGetSortInfo(<Spreadsheet control> , <Type of information>)
<Result>: Character string
Requested information.
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
<Type of information>: Integer constant
Desired information:
psheetInfoSortCriteriaShows the last sort criteria used to sort Spreadsheet control. <Result> has the following format:
"<Nom de la colonne1>[;< Option>]" + TAB +
"<Nom de la colonne2>" + TAB + ...
where:
  • <Name of column> is the name of sorted column,
  • <Option> corresponds to one of the sort constants defined for SpreadsheetSortSelection.
Example: "A<Tab>B;3"
psheetInfoSortSelectionGets the selection that will be sorted via the Automatic Application Features (AAFs) in the Spreadsheet control. Example: "A2:B4".
Remark: If the selection does not allow the sort, <Result> corresponds to an empty string ("").
psheetInfoSortWithTitleDetermines if the selection sorted by the Automatic Application Features (AAFs) in the Spreadsheet control contains a title. <Result> can correspond to:
  • 1 if the selection to sort includes a title,
  • 0 otherwise.
Componente: wd290obj.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: 24/02/2024

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