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!

CollectionEditor.SetItems

Sets the given collection to have the given array of items. If setting requires that a new object be created, the new object should be returned. Otherwise, editValue should be returned.

[Visual Basic]
Overridable Protected Function SetItems( _
   ByVal editValue As Object, _
   ByVal value() As Object _
) As Object
[C#]
protected virtual object SetItems(
   object editValue,
   object[] value
);
[C++]
protected: virtual Object* SetItems(
   Object* editValue,
   Object* value[]
);
[JScript]
protected function SetItems(
   editValue : Object,
   value : Object[]
) : Object;

Parameters

editValue
[To be supplied.]
value
[To be supplied.]

See Also

CollectionEditor Class | CollectionEditor Members | System.ComponentModel.Design Namespace