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!

ICodeObjectCreateExpression.SetArguments

Sets the array of values that will be used to construct the object.

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

Parameters

value
An array of object values to serve as arguments.

Remarks

Each of these objects can be a Variant or any expression type. See ICodeSourceFile for more information about expressions.

See Also

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