|
|
|
|
|
TabSaveConfiguration (Function) In french: OngletSauveConfiguration Saves the configuration of the dynamic tabs found in a Tab control in character string format. This configuration can be restored by TabLoadConfiguration. // 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 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|