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!

ImageList.Draw (Graphics, Int32, Int32, Int32)

Draw the image indicated by the given index on the given Graphics at the given location.

[Visual Basic]
Overloads Public Sub Draw( _
   ByVal g As Graphics, _
   ByVal x As Integer, _
   ByVal y As Integer, _
   ByVal index As Integer _
)
[C#]
public void Draw(
   Graphics g,
   int x,
   int y,
   int index
);
[C++]
public: void Draw(
   Graphics* g,
   int x,
   int y,
   int index
);
[JScript]
public function Draw(
   g : Graphics,
   x : int,
   y : int,
   index : int
);

Parameters

g
Graphics object to draw into.
x
x portion of where to draw the image.
y
y portion of where to draw the image.
index
image in the ImageList to draw

See Also

ImageList Class | ImageList Members | System.WinForms Namespace | ImageList.Draw Overload List