AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Pestaña
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
Saves the configuration of the dynamic panes found in a Tab control in character string format. This configuration can be restored by TabLoadConfiguration.
Example
// Asks the user for the backup file
sFile is string
 
// Opens the file picker
sFile = fSelect("", "", ...
"Select a configuration file...", ...
"Dashboard configuration" + TAB + "*.conf", "*.conf", ...
fselCreate + fselExist)
// If a file is selected
IF sFile <> "" THEN
// Gets the current configuration in a string
sConfiguration is string = TabSaveConfiguration(TAB_Dashboard)
// Saves the configuration
IF fSaveText(sFile, sConfiguration) THEN
ToastDisplay("The configuration was saved", toastShort, vaMiddle, haCenter)
ELSE
Error("Error while saving the configuration file", ErrorInfo())
END
END
Syntax
<Result> = TabSaveConfiguration(<Tab control>)
<Result>: Character string
Configuration saved in the format of a character string.
<Tab control>: Control name
Name of the Tab control to be used.
Remarks
  • The configuration of the dynamic panes found in a Tab control includes the following elements:
    • the existing dynamic panes as well as their rank.
    • the internal window associated with each dynamic pane.
  • To automatically save or restore the user configuration, you can:
    • in the editor, check "Remember configuration of tabs" in the "Details" tab of the control description window.
    • in the code, use the StoreTheConfiguration property.
Component: wd290obj.dll
Versión mínima requerida
  • Versión 20
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

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