Aspose::BarCode::BarCodeRecognition::Quadrangle::Contains method

Quadrangle::Contains(int32_t, int32_t) method

Determines if the specified point is contained within this Quadrangle class.

bool Aspose::BarCode::BarCodeRecognition::Quadrangle::Contains(int32_t x, int32_t y)
ParameterTypeDescription
xint32_tThe x point cordinate.
yint32_tThe y point cordinate.

ReturnValue

Returns true if point is contained within this Quadrangle class; otherwise, false.

See Also

Quadrangle::Contains(System::Drawing::Point) method

Determines if the specified Point is contained within this Quadrangle class.

bool Aspose::BarCode::BarCodeRecognition::Quadrangle::Contains(System::Drawing::Point pt)
ParameterTypeDescription
ptSystem::Drawing::PointThe Point to test.

ReturnValue

Returns true if Point is contained within this Quadrangle class; otherwise, false.

See Also

Quadrangle::Contains(System::Drawing::Rectangle) method

Determines if the specified Rectangle is contained or intersect this Quadrangle class.

bool Aspose::BarCode::BarCodeRecognition::Quadrangle::Contains(System::Drawing::Rectangle rect)
ParameterTypeDescription
rectSystem::Drawing::RectangleThe Rectangle to test.

ReturnValue

Returns true if Rectangle is contained or intersect this Quadrangle class; otherwise, false.

See Also

Quadrangle::Contains(System::SharedPtr<Quadrangle>) method

Determines if the specified Quadrangle is contained or intersect this Quadrangle class.

bool Aspose::BarCode::BarCodeRecognition::Quadrangle::Contains(System::SharedPtr<Quadrangle> quad)
ParameterTypeDescription
quadSystem::SharedPtr<Quadrangle>The Quadrangle to test.

ReturnValue

Returns true if Quadrangle is contained or intersect this Quadrangle class; otherwise, false.

See Also