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.GetBitmap

Returns the image specified by the given index. The bitmap returned is a copy of the original image.

[Visual Basic]
Public Function GetBitmap( _
   ByVal index As Integer _
) As Bitmap
[C#]
public Bitmap GetBitmap(
   int index
);
[C++]
public: Bitmap* GetBitmap(
   int index
);
[JScript]
public function GetBitmap(
   index : int
) : Bitmap;

Parameters

index
Image we wish to get as a Bitmap

Return Value

Bitmap a Bitmap object with the specified image in it.

See Also

ImageList Class | ImageList Members | System.WinForms Namespace