XmlDocument.CreateElement(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.