Freigeben über


XmlElement.RemoveAttributeNS(Object, String) Methode

Definition

Entfernt das angegebene Attribut aus diesem Element im angegebenen 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)

Parameter

namespaceUri
Object

Platform::Object

IInspectable

Der Namespace des zu entfernenden Attributs.

localName
String

Platform::String

winrt::hstring

Der Name des Attributs ohne Namespacepräfix.

Beispiele

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

Gilt für: