Class PropertyChangedEventArgs

Used by the propertyChanged event to indicate which property has changed.

see

{@link http://msdn.microsoft.com/en-us/library/bb310957(v=vs.100).aspx}

Hierarchy

Index

Constructor methods

Properties

Methods

Constructor methods

constructor(propertyName: string): PropertyChangedEventArgs

Initializes a new instance of the PropertyChangedEventArgs class.

Parameters

  • propertyName: string
          The name of the property that changed.
    

Returns

PropertyChangedEventArgs

Properties

public Empty: EventArgs

An object of type EventArgs that is used as a convenient way to specify an empty EventArgs instance.

Methods

public propertyName(): string

Gets the name of the property that changed. Use the propertyName property to determine the name of the property that changed.

Returns

string

A string that contains the name of the property that changed.