다음을 통해 공유


XmlElement.RemoveAttributeNS(Object, String) 메서드

정의

지정된 네임스페이스의 이 요소에서 지정된 특성을 제거합니다.

public:
 virtual void RemoveAttributeNS(Platform::Object ^ namespaceUri, Platform::String ^ localName) = RemoveAttributeNS;
void RemoveAttributeNS(IInspectable const& namespaceUri, winrt::hstring const& localName);
public void RemoveAttributeNS(object namespaceUri, string localName);
function removeAttributeNS(namespaceUri, localName)
Public Sub RemoveAttributeNS (namespaceUri As Object, localName As String)

매개 변수

namespaceUri
Object

Platform::Object

IInspectable

제거할 특성의 네임스페이스입니다.

localName
String

Platform::String

winrt::hstring

네임스페이스 접두사를 사용하지 않는 특성의 이름입니다.

예제

element.RemoveAttributeNS("http://www.w3.org/2000/svg", "width");
element.RemoveAttributeNS(winrt::box_value(L"http://www.w3.org/2000/svg"), L"width");

적용 대상