Preferences.Export

説明

プリファレンスの 1 つまたは複数のカテゴリをファイルに書き出します。

C#構文

Preferences.Export( String in_bstrFile, String in_bstrCategories );

スクリプト構文

Preferences.Export( Filename, [Categories] );

パラメータ

パラメータ タイプ 説明
Filename String 書き出すファイルの名前
Categories String 書き出すカテゴリ。 カテゴリはコンマで区切ります。指定しない場合はすべてのカテゴリが書き出されます。

1. JScript の例

// This exports 2 categories

var app = Application;

var path = XSIUtils.BuildPath( app.InstallationPath(siFactoryPath), "myprefs.xsipref" );

app.Preferences.Export(path, "data_management, scripting");

2. VBScript の例

' This exports all preferences

set app = Application

path = XSIUtils.BuildPath( app.InstallationPath(siFactoryPath), "myprefs.xsipref" )

Application.Preferences.Export path

関連項目

Preferences.Import Preferences.Categories Preferences.GetPreferenceValue Preferences.SetPreferenceValue Preferences.RestoreDefault Preferences.SaveChanges