Click or drag to resize

PdfPath Class

A PdfBaseShape that contains a series of operations to define a custom drawing.
Inheritance Hierarchy
SystemObject
  Atalasoft.PdfDoc.Generating.ShapesPdfBaseShape
    Atalasoft.PdfDoc.Generating.ShapesPdfPath

Namespace:  Atalasoft.PdfDoc.Generating.Shapes
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
[SerializableAttribute]
public class PdfPath : PdfBaseShape

The PdfPath type exposes the following members.

Constructors
  NameDescription
Public methodPdfPath(IPdfColor)
Initializes a new instance of the PdfPath class.
Public methodPdfPath(PdfBaseShape)
Initializes a new instance of the PdfPath class.
Public methodPdfPath(IPdfColor, Double)
Initializes a new instance of the PdfPath class.
Public methodPdfPath(IPdfColor, Double, IPdfColor)
Initializes a new instance of the PdfPath class.
Top
Properties
  NameDescription
Public propertyClip
Gets or sets a value indicating whether this PdfBaseShape shape will clip.
(Inherited from PdfBaseShape.)
Public propertyFillColor
Gets or sets the color of the fill.
(Inherited from PdfBaseShape.)
Public propertyFillMethod
Gets or sets the fill method.
Public propertyLocation
Gets or sets the location.
(Inherited from PdfBaseShape.)
Public propertyName
Gets or sets the name of the IPdfRenderable object.
(Inherited from PdfBaseShape.)
Public propertyOutlineColor
Gets or sets the color of the outline.
(Inherited from PdfBaseShape.)
Public propertyPathOperations
Gets the path operations that comprise the shape. This will be a list of operations that will be performed in order.
Public propertyRotation
Gets or sets the rotation in degrees.
(Inherited from PdfBaseShape.)
Public propertyScale
Gets or sets the scale.
(Inherited from PdfBaseShape.)
Public propertyStyle
Gets or sets the style.
(Inherited from PdfBaseShape.)
Top
Methods
  NameDescription
Public methodClone
Creates a new object that is a copy of the current instance.
(Inherited from PdfBaseShape.)
Protected methodCloneInstance
Clones the instance.
(Overrides PdfBaseShapeCloneInstance.)
Public methodClose
Closes the path to the previous MoveTo command.
Public methodCopyBaseShapePropertiesTo
Copies the base shape properties to the parameter shape.
(Inherited from PdfBaseShape.)
Public methodCurveTo(PdfPoint, PdfPoint, PdfPoint)
Curves to the destination point from the previous point using the sourceControlPoint and destinationControl point to render the curve
Public methodCurveTo(Double, Double, Double, Double, Double, Double)
Curves to the destination point from the previous point using the (x1, y1) as the source control point, (x2, y2) as the destination control point and (x3, y3) as the destination point to render the curve
Protected methodDrawShape
Draws the shape.
(Overrides PdfBaseShapeDrawShape(PdfPageRenderer).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodGenerateTransform
Generates the default transform based on Scale, Rotate, and Translate.
(Inherited from PdfBaseShape.)
Public methodGetBounds
Gets the bounding box of the PdfPath.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLineTo(PdfPoint)
Draws a line from the current drawing point to the parameter
Public methodLineTo(Double, Double)
Draws a line from the current drawing point to (x, y)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMoveTo(PdfPoint)
Sets the current drawing point to the parameter
Public methodMoveTo(Double, Double)
Sets the current drawing point to (x, y)
Public methodNotifyResourceRenamed
Notifies a resource consumer that a resource was renamed.
(Inherited from PdfBaseShape.)
Protected methodOnResourceRenamed
Called when a resource in the base shape has been renamed.
(Inherited from PdfBaseShape.)
Protected methodOnResourcesRequested
Called when the PdfBaseShape is requested to report resources used. If client code consumes resources, it should override this method combining its results with those of base.OnResourceRequested
(Inherited from PdfBaseShape.)
Public methodRender
Generates the PDF.
(Inherited from PdfBaseShape.)
Public methodResourcesUsed
Reports a list of all resources consumed by the object of the given class.
(Inherited from PdfBaseShape.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Examples
page.DrawingList.Add(path);
PdfPath path = new PdfPath(PdfColorFactory.FromGray(0.0), 2.0);
path.MoveTo(new PdfPoint(0, 0));
path.LineTo(new PdfPoint(100, 150));
path.CurveTo(new PdfPoint(100, 250), new PdfPoint(200, 250), new PdfPoint(200, 150));
path.LineTo(new PdfPoint(300, 40));
path.CurveTo(new PdfPoint(340, 0), new PdfPoint(340, 0), new PdfPoint(380, 40));
path.CurveTo(new PdfPoint(380,100), new PdfPoint(380,100),new PdfPoint(600, 40));
page.DrawingList.Add(path);
See Also