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!

ICodeDataMember.Value

The value to initialize the data member with.

[Visual Basic]
Property Value As Object
[C#]
object Value {get; set;}
[C++]
Object* get_Value() = 0;void set_Value(Object*) = 0;
[JScript]
abstract function get Value() : Object;
public abstract function set Value(Object);

Property Value

An object storing the value to initialize the data member with.

Remarks

This can be a Variant or any expression type. See the ICodeSourceFile documentation for more information about expressions. Setting this to a null reference (in Visual Basic Nothing) will result in the data member not getting initialized.

See Also

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