エディタ にモデルを表示する
メインエディタ、サブエディタでモデルを表示する方法を説明します。
メインエディタで表示する
次のようにモデルナビゲータの選択を変更します。
public void ShowInEditor(ICommandContext c, ICommandParams p)
{
// エディタの表示対象となるモデ ルを取得します
IModel model = ...;
// モデルナビゲータをアクティブにして選択します
IEditorPage editorPage = c.App.Window.EditorPage;
editorPage.ActiveNavigator = "Model";
editorPage.CurrentNavigator.Select(model);
// さらにビュー定義を切り替える場合は下記のようにします
var viewDefinitionName = "Detail"; // "Detail"という名前のビュー定義の例
IEditorDef viewDef = model.OwnerProject.Profile.ViewDefinitions.Editors.FirstOrDefault(e => e.ModelClass.Id == model.Metaclass.Id && e.Name == viewDefinitionName);
editorPage.MainEditorView.SelectViewDefinition(viewDef);
}
備考
上記のサンプルコードでは試験的に実装された次のAPIを使用しています。
- IEditorDef.Name プロパティ
これらのAPIは品質保証しておらず、API仕様にも未記載のものです。ご利用される場合はユーザー様の責任でご利用ください。