XPTable.Models.Cell.OnPropertyChanged C# (CSharp) Méthode

OnPropertyChanged() protected méthode

Raises the PropertyChanged event
protected OnPropertyChanged ( XPTable.Events.CellEventArgs e ) : void
e XPTable.Events.CellEventArgs A CellEventArgs that contains the event data
Résultat void
        protected virtual void OnPropertyChanged(CellEventArgs e)
        {
            e.SetColumn(this.Index);

            if (this.Row != null)
            {
                e.SetRow(this.Row.Index);
            }

            if (this.CanRaiseEvents)
            {
                if (this.Row != null)
                {
                    this.Row.OnCellPropertyChanged(e);
                }

                if (PropertyChanged != null)
                {
                    PropertyChanged(this, e);
                }
            }
        }