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 As GcGraphics, _
ByVal As System.Drawing.RectangleF, _
ByVal As System.Single, _
ByVal As Pen, _
ByVal As System.Drawing.Color _
) As System.Boolean
public static System.bool DrawCloudy(
GcGraphics ,
System.Drawing.RectangleF ,
System.float ,
Pen ,
System.Drawing.Color
)
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