RaisePlotChanged() private method

Invokes the OnPlotChanged event if it has been set.
private RaisePlotChanged ( String property ) : void
property String The property name to take as argument.
return void
Ejemplo n.º 1
0
        public void Function(PlotValue plot, StringValue property, Value newValue)
        {
            var propertyName = property.Value;

            AlterProperty(plot, propertyName, newValue);
            plot.RaisePlotChanged(propertyName);
            Context.RaiseNotification(new NotificationEventArgs(NotificationType.Success, "Property changed"));
        }
Ejemplo n.º 2
0
 public void Function(PlotValue plot, StringValue property, Value newValue)
 {
     var propertyName = property.Value;
     AlterProperty(plot, propertyName, newValue);
     plot.RaisePlotChanged(propertyName);
     Context.RaiseNotification(new NotificationEventArgs(NotificationType.Success, "Property changed"));
 }