次の方法で共有


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

適用対象