NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ControlPaint.DrawSizeGrip (Graphics, Color, Int32, Int32, Int32, Int32)

Draws a size grip at the given location. The color of the size grip is based on the given background color.

[Visual Basic]
Overloads Public Shared Sub DrawSizeGrip( _
   ByVal graphics As Graphics, _
   ByVal backColor As Color, _
   ByVal x As Integer, _
   ByVal y As Integer, _
   ByVal width As Integer, _
   ByVal height As Integer _
)
[C#]
public static void DrawSizeGrip(
   Graphics graphics,
   Color backColor,
   int x,
   int y,
   int width,
   int height
);
[C++]
public: static void DrawSizeGrip(
   Graphics* graphics,
   Color backColor,
   int x,
   int y,
   int width,
   int height
);
[JScript]
public static function DrawSizeGrip(
   graphics : Graphics,
   backColor : Color,
   x : int,
   y : int,
   width : int,
   height : int
);

Parameters

graphics
The graphics object to draw to.
backColor
The background color to use when determining the colors of the size grip.
x
X coordinate of the rectangular dimensions of the size grip.
y
Y coordinate of the rectangular dimensions of the size grip.
width
width of the rectangular dimensions of the size grip.
height
height of the rectangular dimensions of the size grip.

See Also

ControlPaint Class | ControlPaint Members | System.WinForms Namespace | ControlPaint.DrawSizeGrip Overload List