Class LocationRect
Inheritance
Namespace: Telerik.Maui.Controls.Compatibility.ShapefileReader
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public sealed class LocationRect : ValueType
Constructors
LocationRect(Location, Location)
Initializes a new instance of the LocationRect struct.
Declaration
public LocationRect(Location northwest, Location southeast)
Parameters
Location
northwest
The northwest. |
Location
southeast
The southeast. |
Fields
Empty
Properties
East
Gets the east value of the rect.
Declaration
public double East { get; }
Property Value
System.Double
|
IsEmpty
Gets a value indicating whether the current rect is empty.
Declaration
public bool IsEmpty { get; }
Property Value
System.Boolean
|
North
Gets the north value of the rect.
Declaration
public double North { get; }
Property Value
System.Double
|
Northwest
Gets the northwest value of the rect.
Declaration
public Location Northwest { get; }
Property Value
Location
|
South
Gets the south value of the rect.
Declaration
public double South { get; }
Property Value
System.Double
|
Southeast
Gets the southeast value of the rect.
Declaration
public Location Southeast { get; }
Property Value
Location
|
West
Gets the west value of the rect.
Declaration
public double West { get; }
Property Value
System.Double
|
Methods
Equals(Object)
Determines whether the specified System.Object is equal to this instance.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The System.Object to compare with this instance. |
Returns
System.Boolean
|
Equals(LocationRect, LocationRect)
Checks whether two LocationRect values are equal.
Declaration
public static bool Equals(LocationRect locationRect1, LocationRect locationRect2)
Parameters
LocationRect
locationRect1
|
LocationRect
locationRect2
|
Returns
System.Boolean
|
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |
Operators
Equality(LocationRect, LocationRect)
Checks whether two LocationRect values are equal.
Declaration
public static bool operator ==(LocationRect locationRect1, LocationRect locationRect2)
Parameters
LocationRect
locationRect1
|
LocationRect
locationRect2
|
Returns
System.Boolean
|
Inequality(LocationRect, LocationRect)
Checks whether two LocationRect values are not equal.
Declaration
public static bool operator !=(LocationRect locationRect1, LocationRect locationRect2)
Parameters
LocationRect
locationRect1
|
LocationRect
locationRect2
|
Returns
System.Boolean
|