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!

ICodeArrayCreateExpression.SetItems

Sets the items in the array.

[Visual Basic]
Sub SetItems( _
   ByVal value() As Object _
)
[C#]
void SetItems(
   object[] value
);
[C++]
void SetItems(
   Object* value[]
) = 0;
[JScript]
function SetItems(
   value : Object[]
);

Parameters

value
An array of objects.

Remarks

Each object returned can be an object, or an object implementing one of the expression interfaces. See documentation for ICodeSourceFile for more information.

See Also

ICodeArrayCreateExpression Interface | ICodeArrayCreateExpression Members | System.ComponentModel.Design.CodeModel Namespace | ICodeSourceFile