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!

ToolboxItem.Load

Loads this ToolboxItem's state from the stream. If derived classes wish to do any special persistance they MUST override this method, and first call base.Load() before doing their own persistance.

[Visual Basic]
Overridable Protected Sub Load( _
   ByVal s As Stream _
)
[C#]
protected virtual void Load(
   Stream s
);
[C++]
protected: virtual void Load(
   Stream* s
);
[JScript]
protected function Load(
   s : Stream
);

Parameters

s
The stream to load state from.

See Also

ToolboxItem Class | ToolboxItem Members | System.Drawing.Design Namespace