[]
Tests whether the specified point is contained within the current RectangleD.
public bool Contains(PointD pt)
Type | Name | Description |
---|---|---|
PointD | pt | The PointD to test. |
Type | Description |
---|---|
bool | true if |
Tests whether the specified rectangle is entirely contained within the current RectangleD.
public bool Contains(RectangleD rc)
Type | Name | Description |
---|---|---|
RectangleD | rc | The RectangleD to test. |
Type | Description |
---|---|
bool | true if |
Tests whether a point specified by its coordinates is contained within the current RectangleD.
public bool Contains(double x, double y)
Type | Name | Description |
---|---|---|
double | x | The X coordinate of the point to test. |
double | y | The Y coordinate of the point to test. |
Type | Description |
---|---|
bool | true if the specified point is contained within the current RectangleD structure, false otherwise. |