New to Telerik ReportingStart a free 30-day trial

Location

Struct

Defines a point in the geographic coordinate system.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public struct Location

Constructors

TODO: Add documentation.

C#
public Location(double latitude, double longitude)
Parameters:latitudedoublelongitudedouble

Fields

TODO: Add documentation.

C#
public static readonly Location Empty

TODO: Add documentation.

C#
public static readonly Location Zero

Properties

TODO: Add documentation.

C#
public bool IsEmpty { get; }

Latitude

double

The latitude of the location.

C#
public double Latitude { get; set; }

Longitude

double

The longitude of the location.

C#
public double Longitude { get; set; }

Methods

TODO: Add documentation.

C#
public bool Equals(Location location)
Parameters:locationLocationReturns:

bool

TODO: Add documentation.

C#
public override bool Equals(object obj)
Parameters:objobjectReturns:

bool

Overrides: ValueType.Equals(object)

TODO: Add documentation.

C#
public override int GetHashCode()
Returns:

int

Overrides: ValueType.GetHashCode()

TODO: Add documentation.

C#
public override string ToString()
Returns:

string

Overrides: ValueType.ToString()

Operators

TODO: Add documentation.

C#
public static bool operator !=(Location x, Location y)
Parameters:xLocationyLocationReturns:

bool

TODO: Add documentation.

C#
public static bool operator ==(Location x, Location y)
Parameters:xLocationyLocationReturns:

bool