3 instantiations of Region
Microsoft.Maui.Controls (3)
Region.cs (3)
33
return new
Region
(list);
60
return new
Region
(positions);
123
return new
Region
(rectangles, inflation);
14 references to Region
Microsoft.Maui.Controls (14)
GestureElement.cs (1)
58
Region
ISpatialElement.Region { get; set; }
ISpatialElement.cs (1)
6
Region
Region { get; set; }
Region.cs (12)
11
public struct Region : IEquatable<
Region
>
30
public static
Region
FromRectangles(IEnumerable<Rect> rectangles)
37
public static
Region
FromLines(double[] lineHeights, double maxWidth, double startX, double endX, double startY)
83
public
Region
Deflate()
92
public
Region
Inflate(double size)
98
public
Region
Inflate(double left, double top, double right, double bottom)
126
public bool Equals(
Region
other) =>
129
public override bool Equals(object obj) => obj is
Region
other && Equals(other);
133
public static bool operator ==(
Region
left,
Region
right) => left.Equals(right);
135
public static bool operator !=(
Region
left,
Region
right) => !(left == right);