Compartilhar via


XmlElement.RemoveAttributeNS(Object, String) Método

Definição

Remove o atributo especificado desse elemento no namespace especificado.

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)

Parâmetros

namespaceUri
Object

Platform::Object

IInspectable

O namespace do atributo a ser removido.

localName
String

Platform::String

winrt::hstring

O nome do atributo sem o prefixo de namespace.

Exemplos

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

Aplica-se a