|
|
|
|
|
AAFExportParameter (Function) In french: FAAExporteParamètre Saves all customizations made via AAFs (Automatic Application Features) in a file.
nomFichier is string
nomFichier = fSelect("", "", "Sélectionnez un fichier...", ...
"paramètres" + TAB + "*.param" + CR + ...
"Tous les fichiers (*.*)" + TAB + "*.*", "*.*", fselCreate + fselExist)
IF nomFichier = "" THEN RETURN
AAFExportParameter(nomFichier)
IF ErrorOccurred THEN
Error()
ELSE
ToastDisplay("Paramètres exportés dans " + CR + nomFichier)
ShellExecute(fExtractPath(nomFichier, fDrive + fDirectory))
END
Syntax
AAFExportParameter(<Export file>)
<Export file>: Character string Name and full path of the file to which the AAF customizations will be saved. Remarks Saved customizations All customizations made by the user are saved: - Window sizes and positions,
- Stored control values,
- Input history,
- Custom-notes,
- Customization of the Dashboard controls,
- Dockable Panel customization, ...
These parameters can be restored with AAFImportParameter or via the Automatic Application Feature for importing parameters (available in the context menu of a window in the application).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|