'Declaration
Public Sub DrawCloud( _ ByVal pen As PdfPen, _ ByVal brush As PdfBrush, _ ByVal polygon() As PdfPoint, _ ByVal radius As Double, _ ByVal extension As Double, _ ByVal niceCorners As Boolean _ )
'Usage
Dim instance As PdfGraphics Dim pen As PdfPen Dim brush As PdfBrush Dim polygon() As PdfPoint Dim radius As Double Dim extension As Double Dim niceCorners As Boolean instance.DrawCloud(pen, brush, polygon, radius, extension, niceCorners)
Parameters
- pen
- PdfPen that determines the color, width, and style of the cloud outline.
- brush
- PdfBrush that determines the characteristics of the cloud fill.
- polygon
- The list of points that define the polygon cloud.
- radius
- The radius of the arcs that compose the cloud.
- extension
- Extension for cloud arcs.
- niceCorners
- If true then the cloud arcs are distributed evenly between 2 polygon points.