XmlBuilder.SetTagInnerText(String) Method

Definition

Sets the Xml control's inner text.

public:
 override void SetTagInnerText(System::String ^ text);
public override void SetTagInnerText (string text);
override this.SetTagInnerText : string -> unit
Public Overrides Sub SetTagInnerText (text As String)

Parameters

text
String

The value to insert as the inner text.

Exceptions

The String object passed in is not well-formed XML.

Remarks

This method loads the String passed in to an XML document to determine whether it is well-formed. If it is, the code calls the SetTagInnerText method of the ControlBuilder class.

Applies to

See also