Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcGraphicsExt Class / DrawCloudy Method
The GrapeCity.Documents.Drawing.GcGraphics object.
The ellipse bounds.
The intensity of the "cloudy" effect, valid values are from 0 to 2.
The GrapeCity.Documents.Drawing.Pen to use.
The fill color.

In This Topic
    DrawCloudy Method
    In This Topic
    Draws an ellipse with a "cloudy" border. (As per the PDF spec, the border should be drawn as a series of convex curved line segments in a manner that simulates the appearance of a cloud.)
    Syntax
    'Declaration
     
    Public Shared Function DrawCloudy( _
       ByVal g As GcGraphics, _
       ByVal bounds As System.Drawing.RectangleF, _
       ByVal intensity As System.Single, _
       ByVal pen As Pen, _
       ByVal fillColor As System.Drawing.Color _
    ) As System.Boolean
    public static System.bool DrawCloudy( 
       GcGraphics g,
       System.Drawing.RectangleF bounds,
       System.float intensity,
       Pen pen,
       System.Drawing.Color fillColor
    )

    Parameters

    g
    The GrapeCity.Documents.Drawing.GcGraphics object.
    bounds
    The ellipse bounds.
    intensity
    The intensity of the "cloudy" effect, valid values are from 0 to 2.
    pen
    The GrapeCity.Documents.Drawing.Pen to use.
    fillColor
    The fill color.
    See Also