<< 目次を表示 >> ページ位置: API・アドイン・スクリプト > API > サンプルコード > リポジトリに対する操作 |
EAのプロジェクトファイルを開き、閉じるサンプルです。
// リポジトリオブジェクトを作成します
EA.Repository repository = new EA.Repository();
// リポジトリを開きます
repository.OpenFile(@"C:\SampleCodeProject.eap");
// 開いたリポジトリを活用します
// [プロジェクト内の探索]
DumpSample dump = new DumpSample();
dump.DumpModel(repository);
// リポジトリを閉じます
repository.CloseFile();
// リポジトリを削除します
repository.Exit();
repository = null;