Path Constructors

Overloads

Path(Single, Single)Initializes a new instance of the Path class.
Path(Single, Single, Color)Initializes a new instance of the Path class.
Path(Single, Single, Color, Color)Initializes a new instance of the Path class.
Path(Single, Single, Color, Color, Single, LineStyle, Boolean)Initializes a new instance of the Path class.
Path(Single, Single, Color, Single, LineStyle)Initializes a new instance of the Path class.
Path(Single, Single, Color, Single, LineStyle, Boolean)Initializes a new instance of the Path class.

Path(Single, Single)

Initializes a new instance of the Path class.

public Path(float x, float y)
Public Sub New (x As Single, y As Single)

Parameters

x
Single

X coordinate of the path.

y
Single

Y coordinate of the path.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Path(Single, Single, Color)

Initializes a new instance of the Path class.

public Path(float x, float y, Color lineColor)
Public Sub New (x As Single, y As Single, lineColor As Color)

Parameters

x
Single

X coordinate of the path.

y
Single

Y coordinate of the path.

lineColor
Color

Color of the lines of the path.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Path(Single, Single, Color, Color)

Initializes a new instance of the Path class.

public Path(float x, float y, Color lineColor, Color fillColor)
Public Sub New (x As Single, y As Single, lineColor As Color, fillColor As Color)

Parameters

x
Single

X coordinate of the path.

y
Single

Y coordinate of the path.

lineColor
Color

Color of the lines of the path.

fillColor
Color

Color of the fill of the path.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Path(Single, Single, Color, Color, Single, LineStyle, Boolean)

Initializes a new instance of the Path class.

public Path(float x, float y, Color lineColor, Color fillColor, float lineWidth, LineStyle lineStyle, bool closePath)
Public Sub New (x As Single, y As Single, lineColor As Color, fillColor As Color, lineWidth As Single, lineStyle As LineStyle, closePath As Boolean)

Parameters

x
Single

X coordinate of the path.

y
Single

Y coordinate of the path.

lineColor
Color

Color of the lines of the path.

fillColor
Color

Color of the fill of the path.

lineWidth
Single

Width of the lines of the path.

lineStyle
LineStyle

Style of the lines of the path.

closePath
Boolean

Specifies if the path should be closed.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Path(Single, Single, Color, Single, LineStyle)

Initializes a new instance of the Path class.

public Path(float x, float y, Color lineColor, float lineWidth, LineStyle lineStyle)
Public Sub New (x As Single, y As Single, lineColor As Color, lineWidth As Single, lineStyle As LineStyle)

Parameters

x
Single

X coordinate of the path.

y
Single

Y coordinate of the path.

lineColor
Color

Color of the lines of the path.

lineWidth
Single

Width of the lines of the path.

lineStyle
LineStyle

Style of the lines of the path.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Path(Single, Single, Color, Single, LineStyle, Boolean)

Initializes a new instance of the Path class.

public Path(float x, float y, Color lineColor, float lineWidth, LineStyle lineStyle, bool closePath)
Public Sub New (x As Single, y As Single, lineColor As Color, lineWidth As Single, lineStyle As LineStyle, closePath As Boolean)

Parameters

x
Single

X coordinate of the path.

y
Single

Y coordinate of the path.

lineColor
Color

Color of the lines of the path.

lineWidth
Single

Width of the lines of the path.

lineStyle
LineStyle

Style of the lines of the path.

closePath
Boolean

Specifies if the path should be closed.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

See Also

Path
ceTe.DynamicPDF.PageElements

In this topic