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!

ICodeStatement.SetDesignTime

Sets the current design-time only status of this element.

[Visual Basic]
Sub SetDesignTime( _
   ByVal value As Boolean _
)
[C#]
void SetDesignTime(
   bool value
);
[C++]
void SetDesignTime(
   bool value
) = 0;
[JScript]
function SetDesignTime(
   value : Boolean
);

Parameters

value
The new design-time status.

Remarks

When an element is set to design-time only, it will exist in the code in such a way as to not be a part of the compile at runtime. This element will still be available at design time.

See Also

ICodeStatement Interface | ICodeStatement Members | System.ComponentModel.Design.CodeModel Namespace