LocationRect
Struct
Represents a rectangular area defined by northwest and southeast locations.
Definition
Namespace:Telerik.Maui.Controls.ShapefileReader
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public struct LocationRect
Inherited Members
Constructors
Initializes a new instance of the LocationRect struct.
Fields
An empty rect.
C#
public static readonly LocationRect Empty
Properties
Gets a value indicating whether the current rect is empty.
C#
public bool IsEmpty { get; }
Gets the northwest value of the rect.
C#
public readonly Location Northwest { get; }
Gets the southeast value of the rect.
C#
public readonly Location Southeast { get; }
Methods
Checks whether two LocationRect values are equal.
C#
public static bool Equals(LocationRect locationRect1, LocationRect locationRect2)
Returns a hash code for this instance.
C#
public override int GetHashCode()
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides:
Operators
Checks whether two LocationRect values are not equal.
C#
public static bool operator !=(LocationRect locationRect1, LocationRect locationRect2)
Checks whether two LocationRect values are equal.
C#
public static bool operator ==(LocationRect locationRect1, LocationRect locationRect2)