共用方式為


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

適用於