メンバ一覧 baseFB 前のプロパティ 次のプロパティ

VB C# ALL プログラミング言語によるフィルタ (ここで選んだ言語で選別された説明や図だけが表示されます)

baseFB プロパティ

機能および役割

親の FormBase をたどっていった大元の FormBase のインスタンスを示す。

所属するクラス (ツーピーススタイルの場合にこのプロパティが宣言されているクラス)

AppliTech.WorkFrame.FormBase (ローカル)

AppliTech.WorkFrame.FormBase (セントラル)

値を参照・設定する際の書き方

fB.baseFB

(ただし fB は、クラス FormBase のインスタンス)

型および属性 (このプロパティの型と属性)

FormBase 型 (AppliTech.WorkFrame.FormBase) : 大元の FormBase のインスタンス。

読取り専用なので値の設定はできない。

取り得る値とその意味

親の FormBase をたどっていった大元の FormBase のインスタンスを意味する。

例外の発生 (誤った参照の際に発生する例外)

(関係する例外の発生なし)

使用上のヒントと注意事項

関連事項

親の FormBase をたどっていった大元の FormBase のインスタンスだけで意味のあるプロパティには、 CentralLeadResponseCurrentFormBaseCurrentFormBaseIdMainArgsRequestResponseCode の五つがある。

使用例

Friend Function FbBaseFB_GetEvent(ByVal fB As FormBase) As Boolean
    ' baseFB のクラス名と CurrentFormBase のクラス名を表示します。
    fB.MessageBoxShow("baseFB=[" + fB.baseFB.GetType().FullName + "]" _
                        + System.Environment.NewLine _
                        + "fB=[" + fB.baseFB.CurrentFormBase.GetType().FullName + "]")
    Return FormBase.GETEVENT_Allow
End Function
internal bool FbBaseFB_GetEvent( FormBase fB ) {
    // baseFB のクラス名と CurrentFormBase のクラス名を表示します。
    fB.MessageBoxShow("baseFB=[" + fB.baseFB.GetType().FullName + "]"
                        + System.Environment.NewLine
                        + "fB=[" + fB.baseFB.CurrentFormBase.GetType().FullName + "]");
    return FormBase.GETEVENT_Allow;
}
boolean FbBaseFB_GetEvent( FormBase fB ) {
    // baseFB のクラス名と CurrentFormBase のクラス名を表示します。
    fB.MessageBoxShow("<html>baseFB=["
            + fB.baseFB.getClass().getName() + "]<br>" + "fB=["
            + fB.baseFB.CurrentFormBase.getClass().getName()
            + "]</html>");
    return FormBase.GETEVENT_Allow;
}