EA_QueryAvailableCompartments

<< 目次を表示 >>

ページ位置:  API・アドイン・スクリプト > アドイン > ブロードキャストされるイベント > Enterprise Architectの拡張のためのイベント > 独自区画の描画のためのイベント >

EA_QueryAvailableCompartments

このイベントはEnterprise Architectのダイアグラムが更新される場合に呼ばれます。アドインに、ユーザー定義の区画の情報を提供するように通知します。

EA_GetCompartmentDataイベントでそれぞれの要素の情報を提供します。

 

 

文法

public object EA_QueryAvailableCompartments(EA.Repository Repository)

 

EA_QueryAvailableCompartmentsメソッドには次の引数があります。

引数

方向

説明

Repository

EA.Repository

IN

現在開かれているプロジェクトのリポジトリオブジェクトです。

プロジェクトの情報を取得したい場合に利用します。

 

 

戻り値

ユーザー定義の区画情報の文字列です。複数ある場合にはカンマで区切ります。

 

 

public object EA_QueryAvailableCompartments(EA.Repository Repository)

{

 string returnValue = "";

 

   if (m_firstCompartmentVisible)

 {

       returnValue += "first,";

 }

 

   if (m_secondCompartmentVisible)

 {

       returnValue += "second,";

 }

 

   if (m_thirdCompartmentVisible)

 {

       returnValue += "third,";

 }

 

 return returnValue.Trim(',');

}

 

 

参照: