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");

适用于