プリファレンスの 1 つまたは複数のカテゴリをファイルに書き出します。
Preferences.Export( String in_bstrFile, String in_bstrCategories ); |
Preferences.Export( Filename, [Categories] ); |
パラメータ | タイプ | 説明 |
---|---|---|
Filename | String | 書き出すファイルの名前 |
Categories | String | 書き出すカテゴリ。 カテゴリはコンマで区切ります。指定しない場合はすべてのカテゴリが書き出されます。 |
// This exports 2 categories var app = Application; var path = XSIUtils.BuildPath( app.InstallationPath(siFactoryPath), "myprefs.xsipref" ); app.Preferences.Export(path, "data_management, scripting"); |
' This exports all preferences set app = Application path = XSIUtils.BuildPath( app.InstallationPath(siFactoryPath), "myprefs.xsipref" ) Application.Preferences.Export path |