型・APIリファレンス
    Preparing search index...

    Interface ReflectEvent

    反映イベント

    反映ボタンクリック時に発火されるイベント。 Provider(MDetailDialog)が受け取り、DetailView 経由で値を更新する。

    interface ReflectEvent {
        messageId: string;
        previousValue: null | ReflectValue | ReflectValue[];
        propertyName: string;
        reflectType: ReflectType;
        value: null | ReflectValue | ReflectValue[];
    }
    Index

    Properties

    messageId: string

    対象メッセージID

    previousValue: null | ReflectValue | ReflectValue[]

    反映前の値(Undo用)

    propertyName: string

    対象プロパティ名

    reflectType: ReflectType

    反映種別(反映、Undo)

    value: null | ReflectValue | ReflectValue[]

    反映する値