New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.RadMap.dll

Syntax:

C#
public class ElevationCompletedEventArgs : EventArgs

Inheritance: objectEventArgsElevationCompletedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ElevationCompletedEventArgs class.

C#
public ElevationCompletedEventArgs(ElevationData[] elevations, SeaLevelData[] seaLevels, object userData)
Parameters:elevationsElevationData[]

The elevations.

seaLevelsSeaLevelData[]

The seaLevels.

userDataobject

A user-defined object that is passed to the method invoked when the asynchronous operation completes

Initializes a new instance of the ElevationCompletedEventArgs class.

C#
public ElevationCompletedEventArgs(ElevationData[] elevations, SeaLevelData[] seaLevels)
Parameters:elevationsElevationData[]

The elevations.

seaLevelsSeaLevelData[]

The seaLevels.

Properties

Elevations

ElevationData[]

Gets the elevations response.

C#
public ElevationData[] Elevations { get; }

SeaLevels

SeaLevelData[]

Gets the sea levels response.

C#
public SeaLevelData[] SeaLevels { get; }

A user-defined object that is passed to the method invoked when the asynchronous operation completes.

C#
public object UserData { get; }