New to Telerik Document ProcessingStart a free 30-day trial

Base class for types that implement INotifyPropertyChanged, providing helper methods for raising property change notifications.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Core

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public abstract class NotifyPropertyChangedBase : INotifyPropertyChanged

Inheritance: objectNotifyPropertyChangedBase

Derived Classes: SheetWorkbook

Implements: INotifyPropertyChanged

Constructors

Initializes a new instance of the NotifyPropertyChangedBase class, providing a foundation for implementing property change notifications.

C#
protected NotifyPropertyChangedBase()

Events

Occurs when a property value changes.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged

Methods

Raises the event.

C#
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
Parameters:argsPropertyChangedEventArgs

The PropertyChangedEventArgs instance containing the event data.

Raises the PropertyChanged event for the specified property name.

C#
protected void OnPropertyChanged(string propertyName)
Parameters:propertyNamestring

Name of the property.