'DeclarationPublic Function DrawGradientCurve( _ ByVal ImageID As Integer, _ ByVal arPoints() As Point, _ ByVal PenWidth As Integer, _ ByVal StartColor As Color, _ ByVal EndColor As Color, _ ByVal AntiAlias As Boolean _ ) As GdPictureStatus
public GdPictureStatus DrawGradientCurve( int ImageID, Point[] arPoints, int PenWidth, Color StartColor, Color EndColor, bool AntiAlias )
public function DrawGradientCurve( ImageID: Integer; arPoints: Pointarray of; PenWidth: Integer; StartColor: Color; EndColor: Color; AntiAlias: Boolean ): GdPictureStatus;
public function DrawGradientCurve( ImageID : int, arPoints : Point[], PenWidth : int, StartColor : Color, EndColor : Color, AntiAlias : boolean ) : GdPictureStatus;
public: GdPictureStatus DrawGradientCurve( int ImageID, Point[]* arPoints, int PenWidth, Color StartColor, Color EndColor, bool AntiAlias )
public: GdPictureStatus DrawGradientCurve( int ImageID, array<Point>^ arPoints, int PenWidth, Color StartColor, Color EndColor, bool AntiAlias )
Parameters
- ImageID
- GdPicture image identifier.
- arPoints
- Array of System.Drawing.Point that specifies the coordinates that the cardinal spline passes through.
- PenWidth
- The width, in pixel, of the pen used to draw the curve.
- StartColor
- Starting of the curve, as Color object. A suitable color value can be obtained by using the ARGB() method.
- EndColor
- Ending color of the gradient curve, as Color object. A suitable color value can be obtained by using the ARGB() method.
- AntiAlias
- Set to True to apply the Antialiasing algorithm else False.
Return Value
A member of the GdPictureStatus enumeration.
