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

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

EDeAppendable プロパティ

機能および役割

拡張ボディ部の最終明細行 (データが表示されている最終の明細行) よりも下に新しいデータをインプットできるかどうかを示す。

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

AppliTech.WorkFrame.FormBase (ローカル)

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

fB.EDeAppendable

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

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

真偽値型 (Boolean, bool)

実行時に値の参照も設定もできる。

取り得る値とその意味

EDeAppendable が 偽 (False, false) だと、拡張ボディ部の最終明細行よりも下に新しいデータをインプットできないことを意味する。真 (True, true) ならばできることを意味する。

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

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

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

関連事項

使用例

Friend Function FbEDeAppendable_GetEvent(ByVal fB As FormBase) As Boolean
    ' 拡張ボディ部の明細行追加可否を切り換えます。
    Dim oldEDeAppendable As Boolean = fB.EDeAppendable
    fB.EDeAppendable = Not oldEDeAppendable
    Dim Msg As String = "EDeAppendable の値は [" + fB.EDeAppendable.ToString() + "] になりました。"
    fB.MessageBoxShow(Msg)
    Return FormBase.GETEVENT_Allow
End Function
internal bool FbEDeAppendable_GetEvent( FormBase fB ) {
    // 拡張ボディ部の明細行追加可否を切り換えます。
    bool oldEDeAppendable = fB.EDeAppendable;
    fB.EDeAppendable = !oldEDeAppendable;
    string Msg = "EDeAppendable の値は [" + fB.EDeAppendable.ToString() + "] になりました。";
    fB.MessageBoxShow(Msg);
    return FormBase.GETEVENT_Allow;
}
boolean FbEDeAppendable_GetEvent( FormBase fB ) {
    // 拡張ボディ部の明細行追加可否を切り換えます。
    boolean oldEDeAppendable = fB.EDeAppendable;
    fB.EDeAppendable = !oldEDeAppendable;
    String Msg = "EDeAppendable の値は [" + fB.EDeAppendable
            + "] になりました。";
    fB.MessageBoxShow(Msg);
    return FormBase.GETEVENT_Allow;
}