Class
SourceChangedEventArgs

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:

cs-api-definition
public class SourceChangedEventArgs : EventArgs

Inheritance: objectEventArgsSourceChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

SourceChangedEventArgs(IMapSource, UIElement, IMapSource, UIElement)

Initializes a new instance of the SourceChangedEventArgs class.

Declaration

cs-api-definition
public SourceChangedEventArgs(IMapSource oldSource, UIElement oldElement, IMapSource newSource, UIElement newElement)

Parameters

oldSource

IMapSource

Old map source.

oldElement

UIElement

Old UI element.

newSource

IMapSource

New map source.

newElement

UIElement

New UI element.

Properties

NewElement

Gets new UI element.

Declaration

cs-api-definition
public UIElement NewElement { get; }

Property Value

UIElement

NewSource

Gets new map source.

Declaration

cs-api-definition
public IMapSource NewSource { get; }

Property Value

IMapSource

OldElement

Gets old UI element.

Declaration

cs-api-definition
public UIElement OldElement { get; }

Property Value

UIElement

OldSource

Gets old map source.

Declaration

cs-api-definition
public IMapSource OldSource { get; }

Property Value

IMapSource