Arguments of the event which occurs when map source is changed in the TilePresenter.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
C#
public class SourceChangedEventArgs : EventArgs
Inheritance: objectEventArgsSourceChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the SourceChangedEventArgs class.
C#
public SourceChangedEventArgs(IMapSource oldSource, UIElement oldElement, IMapSource newSource, UIElement newElement)
Old map source.
oldElementUIElementOld UI element.
newSourceIMapSourceNew map source.
newElementUIElementNew UI element.
Properties
NewElement
UIElement
Gets new UI element.
C#
public UIElement NewElement { get; }
Gets new map source.
C#
public IMapSource NewSource { get; }
OldElement
UIElement
Gets old UI element.
C#
public UIElement OldElement { get; }
Gets old map source.
C#
public IMapSource OldSource { get; }