v4.0
プリファレンスのカテゴリをファイルに書き出します。 カテゴリとはプリファレンスのセットで、Application の下にある Preferences オブジェクトの下の 1 つのノードにグループ化されたものです。
ExportPreferences( FileName, [Categories] ); |
パラメータ | タイプ | 説明 |
---|---|---|
FileName | 文字列 | 書き出したプリファレンスを保存するファイル名です。 |
Categories | 文字列 |
書き出すカテゴリ。 カンマ区切りで複数のカテゴリを指定することもできます。このパラメータが空の場合は、すべてのカテゴリが書き出されます。 カテゴリは[Preferences]ノードの下に表示されます。
デフォルト値: なし |
'Export all preferences ExportPreferences InstallationPath(siFactoryPath) & "myprefs.xsipref" |
'Export only the data_management category ExportPreferences InstallationPath(siFactoryPath) & "myDMprefs.xsipref", "data_management" |
'Export 2 categories ExportPreferences InstallationPath(siFactoryPath) & "myprefs.xsipref", "data_management,scripting" |