ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Tab functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Saves the configuration of the dynamic tabs found in a Tab control in character string format. This configuration can be restored by <Tab>.LoadConfiguration.
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 = TAB_Dashboard.SaveConfiguration()
	// 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> = <Tab control>.SaveConfiguration()
<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 tabs found in a Tab control includes the following elements:
    • the existing dynamic tabs 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: wd300obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/20/2024

Send a report | Local help