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!

ICodeElement.SetLiteralText

Sets the literal text that this element contains. This is a string copy to the contents of the actual source file.

[Visual Basic]
Sub SetLiteralText( _
   ByVal value As String _
)
[C#]
void SetLiteralText(
   string value
);
[C++]
void SetLiteralText(
   String* value
) = 0;
[JScript]
function SetLiteralText(
   value : String
);

Parameters

value
The text string to set the element to.

See Also

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