XmlDocument.CreateElement(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 이름을 사용하는 요소 노드를 만듭니다.
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
매개 변수
- tagName
-
String
Platform::String
winrt::hstring
새 요소 노드의 이름입니다. 문자열은 대/소문자를 구분합니다. 이 이름은 이후에 요소 노드의 NodeName 속성으로 사용할 수 있습니다.
반환
새로 만든 개체입니다.