Struct Location
Defines a point in the geographic coordinate system.
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public struct Location
Constructors
Location(Double, Double)
Declaration
public Location(double latitude, double longitude)
Parameters
System.Double
latitude
|
System.Double
longitude
|
Fields
Empty
Zero
Properties
IsEmpty
Declaration
public bool IsEmpty { get; }
Property Value
System.Boolean
|
Latitude
The latitude of the location.
Declaration
public double Latitude { get; set; }
Property Value
System.Double
|
Longitude
The longitude of the location.
Declaration
public double Longitude { get; set; }
Property Value
System.Double
|
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
Overrides
System.ValueType.Equals(System.Object)
Equals(Location)
Declaration
public bool Equals(Location location)
Parameters
Location
location
|
Returns
System.Boolean
|
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.Int32
|
Overrides
System.ValueType.GetHashCode()
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Overrides
System.ValueType.ToString()
Operators
Equality(Location, Location)
Declaration
public static bool operator ==(Location x, Location y)
Parameters
Location
x
|
Location
y
|
Returns
System.Boolean
|