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 MapViewInfo

Inheritance: objectMapViewInfo

Constructors

Initializes a new instance of the MapViewInfo class.

C#
public MapViewInfo(string name, bool supportsLabels, bool showLabels, bool isCurrent)
Parameters:namestring

The name of the view.

supportsLabelsbool

if set to true the view supports labels, which can be turned on or off.

showLabelsbool

if set to true labels are enabled.

isCurrentbool

if set to true if this is the current view.

Properties

Gets or sets a value indicating whether the view is the current view.

C#
public bool IsCurrent { get; set; }
Property Value:

true if the view is the current view; otherwise, false.

Gets or sets the name of the view.

C#
public string Name { get; set; }
Property Value:

The name.

Gets or sets a value indicating whether labels are enabled.

C#
public bool ShowLabels { get; set; }
Property Value:

true if labels are enabled; otherwise, false.

Gets or sets a value indicating whether the view supports labels.

C#
public bool SupportsLabels { get; set; }
Property Value:

true if the vuew supports labels; otherwise, false.