PdfRectangleGdiExtensions.Offset Method

Adjusts the location of this rectangle by the specified amount.

Namespace:  BitMiracle.Docotic.Pdf.Gdi
Assembly:  BitMiracle.Docotic.Pdf.Gdi (in BitMiracle.Docotic.Pdf.Gdi.dll)

Syntax

C#
public static void Offset(
	this PdfRectangle rect,
	PointF pos
)
VB
<ExtensionAttribute>
Public Shared Sub Offset ( 
	rect As PdfRectangle,
	pos As PointF
)

Parameters

rect
Type: BitMiracle.Docotic.Pdf.PdfRectangle
The rectangle.
pos
Type: System.Drawing.PointF
The amount to offset the location.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PdfRectangle. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also