VisibleRangeChangedEventArgs

StockSharp.Xaml.Charting

Event Args used by the VisibleRangeChanged event

Inherits: EventArgs

Constructors

VisibleRangeChangedEventArgs
public VisibleRangeChangedEventArgs(IRange oldRange, IRange newRange, bool isAnimationChange)
visibleRangeChangedEventArgs = VisibleRangeChangedEventArgs(oldRange, newRange, isAnimationChange)

Initializes a new instance of the VisibleRangeChangedEventArgs class.

oldRange
The old range.
newRange
The new range.
isAnimationChange
The value, indicating whether the notification is fired during animation

Properties

IsAnimating
public bool IsAnimating { get; private set; }
value = visibleRangeChangedEventArgs.IsAnimating
visibleRangeChangedEventArgs.IsAnimating = value

Gets the value, indicating whether the current notification was caused by animation

NewVisibleRange
public IRange NewVisibleRange { get; private set; }
value = visibleRangeChangedEventArgs.NewVisibleRange
visibleRangeChangedEventArgs.NewVisibleRange = value

Gets the new VisibleRange before the operation

OldVisibleRange
public IRange OldVisibleRange { get; private set; }
value = visibleRangeChangedEventArgs.OldVisibleRange
visibleRangeChangedEventArgs.OldVisibleRange = value

Gets the old VisibleRange before the operation