Table of Contents

Method Contains

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

Contains(float, float)

Determines if the specified point is contained within this PdfRectangle structure.

public readonly bool Contains(float x, float y)

Parameters

x float

The x-coordinate of the point to test.

y float

The y-coordinate of the point to test.

Returns

bool

This method returns true if the point defined by x and y is contained within this PdfRectangle structure; otherwise false.

Contains(double, double)

Determines if the specified point is contained within this PdfRectangle structure.

public readonly bool Contains(double x, double y)

Parameters

x double

The x-coordinate of the point to test.

y double

The y-coordinate of the point to test.

Returns

bool

This method returns true if the point defined by x and y is contained within this PdfRectangle structure; otherwise false.

Contains(PdfPoint)

Determines if the specified point is contained within this PdfRectangle structure.

public readonly bool Contains(PdfPoint pt)

Parameters

pt PdfPoint

The PdfPoint to test.

Returns

bool

This method returns true if the point represented by the pt parameter is contained within this PdfRectangle structure; otherwise false.

Contains(PdfRectangle)

Determines if the rectangular region represented by rect is entirely contained within this PdfRectangle structure.

public readonly bool Contains(PdfRectangle rect)

Parameters

rect PdfRectangle

The PdfRectangle to test.

Returns

bool

This method returns true if the rectangular region represented by rect is entirely contained within the rectangular region represented by this PdfRectangle; otherwise false.