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!

ImageGenerator.Draw

Draw() takes a Graphics object as an argument and uses GDI+ functions to draw to the object. This method must be defined in derived classes.

[Visual Basic]
MustOverride Public Sub Draw( _
   ByVal g As Graphics, _
   ByVal d As IDictionary _
)
[C#]
public abstract void Draw(
   Graphics g,
   IDictionary d
);
[C++]
public: virtual void Draw(
   Graphics* g,
   IDictionary* d
) = 0;
[JScript]
public abstract function Draw(
   g : Graphics,
   d : IDictionary
);

Parameters

g
[To be supplied.]
d
[To be supplied.]

See Also

ImageGenerator Class | ImageGenerator Members | System.Web.UI.WebControls Namespace