IsVisible()

Region::IsVisible(const Point&) const method

Determines if the specified point is contained within the region represented by the current object.

bool System::Drawing::Region::IsVisible(const Point &point) const

Arguments

ParameterTypeDescription
pointconst Point&The point to check

Region::IsVisible(const PointF&) const method

Determines if the specified point is contained within the region represented by the current object.

bool System::Drawing::Region::IsVisible(const PointF &point) const

Arguments

ParameterTypeDescription
pointconst PointF&The point to check

Region::IsVisible(const Rectangle&) method

Determines if any portion the specified rectangle is contained within the region represented by the current object.

bool System::Drawing::Region::IsVisible(const Rectangle &rect)

Arguments

ParameterTypeDescription
rectconst Rectangle&The rectangle to check

Region::IsVisible(const RectangleF&) method

Determines if any portion the specified rectangle is contained within the region represented by the current object.

bool System::Drawing::Region::IsVisible(const RectangleF &rect)

Arguments

ParameterTypeDescription
rectconst RectangleF&The rectangle to check

Region::IsVisible(const Point&, const SharedPtr<Graphics>&) const method

Determines if the specified point is contained within the region represented by the current object using the specified graphics.

bool System::Drawing::Region::IsVisible(const Point &point, const SharedPtr<Graphics> &graphics) const

Arguments

ParameterTypeDescription
pointconst Point&The point to check
graphicsconst SharedPtr<Graphics>&The graphics context

Region::IsVisible(const PointF&, const SharedPtr<Graphics>&) const method

Determines if the specified point is contained within the region represented by the current object using the specified graphics.

bool System::Drawing::Region::IsVisible(const PointF &point, const SharedPtr<Graphics> &graphics) const

Arguments

ParameterTypeDescription
pointconst PointF&The point to check
graphicsconst SharedPtr<Graphics>&The graphics context

Region::IsVisible(const Rectangle&, const SharedPtr<Graphics>&) method

Determines if any portion the specified rectangle is contained within the region represented by the current object using the specified graphics.

bool System::Drawing::Region::IsVisible(const Rectangle &rect, const SharedPtr<Graphics> &graphics)

Arguments

ParameterTypeDescription
rectconst Rectangle&The rectangle to check
graphicsconst SharedPtr<Graphics>&The graphics context

Region::IsVisible(const RectangleF&, const SharedPtr<Graphics>&) method

Determines if any portion the specified rectangle is contained within the region represented by the current object using the specified graphics.

bool System::Drawing::Region::IsVisible(const RectangleF &rect, const SharedPtr<Graphics> &graphics)

Arguments

ParameterTypeDescription
rectconst RectangleF&The rectangle to check
graphicsconst SharedPtr<Graphics>&The graphics context

Region::IsVisible(float, float) const method

Determines if the specified point is contained within the region represented by the current object.

bool System::Drawing::Region::IsVisible(float x, float y) const

Arguments

ParameterTypeDescription
xfloatThe X coordinate of the point to check
yfloatThe Y coordinate of the point to check

Region::IsVisible(float, float, const SharedPtr<Graphics>&) const method

Determines if the specified point is contained within the region represented by the current object using the specified graphics.

bool System::Drawing::Region::IsVisible(float x, float y, const SharedPtr<Graphics> &graphics) const

Arguments

ParameterTypeDescription
xfloatThe X coordinate of the point to check
yfloatThe Y coordinate of the point to check
graphicsconst SharedPtr<Graphics>&The graphics context

See Also