Documentation
    Preparing search index...

    Interface INotifyPropertyChanged

    Notifies clients that a property value has changed.

    This interface is typically implemented by observable objects that participate in data binding scenarios. When a property value changes, the object raises the INotifyPropertyChanged.onPropertyChanged event to notify any bound clients of the change.

    interface INotifyPropertyChanged {
        onPropertyChanged: (
            handler: EventHandler<IPropertyChangedEventArgs>,
        ) => Disposable;
    }

    Implemented by

    Index

    Properties

    onPropertyChanged: (
        handler: EventHandler<IPropertyChangedEventArgs>,
    ) => Disposable

    Subscribes to property change notifications.

    Type Declaration