XmlDocument.CreateElement(String) Method

Definition

Creates an element node using the specified name.

public:
 virtual XmlElement ^ CreateElement(Platform::String ^ tagName) = CreateElement;
XmlElement CreateElement(winrt::hstring const& tagName);
public XmlElement CreateElement(string tagName);
function createElement(tagName)
Public Function CreateElement (tagName As String) As XmlElement

Parameters

tagName
String

Platform::String

winrt::hstring

The name for the new element node. The string is case-sensitive. This name is subsequently available as the element node's NodeName property.

Returns

The newly created object.

Applies to