Share via


XmlElement.RemoveAttributeNS(Object, String) Method

Definition

Overloads

RemoveAttributeNS(Object, String)

Removes the specified attribute from this element in the specified namespace.

RemoveAttributeNS(Object, String)

Removes the specified attribute from this element in the specified namespace.

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)

Parameters

namespaceUri
Object

Platform::Object

IInspectable

The namespace of attribute to be removed.

localName
String

Platform::String

winrt::hstring

The name of the attribute without the namespace prefix.

Examples

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

Applies to