メンバ一覧 MakeItemsCoherent 前のメソッド 次のメソッド

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

MakeItemsCoherent メソッド

機能および役割

この画面内の全項目について、Coherent 制御を行う。

所属クラス (ツーピーススタイルの場合にこのメソッドが宣言されているクラス)

AppliTech.WorkFrame.FormBase (ローカル)

呼出し方

fB.MakeItemsCoherent()

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

戻り値の型および意味

(戻り値なし)

パラメタの型および意味

(パラメタなし)

例外の発生 (誤った呼出しの際に発生する例外)

「現 FormBase でないので使用できません (MakeItemsCoherent)」

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

この画面のローカル側の項目に Coherent 制御をすべきものがない状態 (Coherent 状態) では、セントラル側との通信は必要ないので行われない。

関連事項

使用例

Friend Function FbMakeItemsCoherent_GetEvent(ByVal fB As FormBase) As Boolean
    Dim res As DialogResult = fB.MessageBoxShow("MakeItemsCoherent 実行しますか?", _
                                                "テスト用ダイアログ", _
                                                MessageBoxButtons.YesNo)
    If res = DialogResult.Yes Then
        fB.MakeItemsCoherent()
    End If
    Return FormBase.GETEVENT_Allow
End Function
internal bool FbMakeItemsCoherent_GetEvent( FormBase fB ) {
    DialogResult res = fB.MessageBoxShow("MakeItemsCoherent 実行しますか?",
                                         "テスト用ダイアログ",
                                         MessageBoxButtons.YesNo);
    if (res == DialogResult.Yes) {
        fB.MakeItemsCoherent();
    }
    return FormBase.GETEVENT_Allow;
}
boolean FbMakeItemsCoherent_GetEvent( FormBase fB ) {
    DialogResult res = fB.MessageBoxShow("MakeItemsCoherent 実行しますか?",
                                         "テスト用ダイアログ",
                                         MessageBoxButtons.YesNo);
    if (res == DialogResult.Yes) {
        fB.MakeItemsCoherent();
    }
    return FormBase.GETEVENT_Allow;
}