XmlElement.SetAttributeNS(Object, String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定指定命名空間中具名屬性的值。
public:
virtual void SetAttributeNS(Platform::Object ^ namespaceUri, Platform::String ^ qualifiedName, Platform::String ^ value) = SetAttributeNS;
void SetAttributeNS(IInspectable const& namespaceUri, winrt::hstring const& qualifiedName, winrt::hstring const& value);
public void SetAttributeNS(object namespaceUri, string qualifiedName, string value);
function setAttributeNS(namespaceUri, qualifiedName, value)
Public Sub SetAttributeNS (namespaceUri As Object, qualifiedName As String, value As String)
參數
- namespaceUri
-
Object
Platform::Object
IInspectable
要設定之屬性的命名空間。
- qualifiedName
-
String
Platform::String
winrt::hstring
要設定的屬性名稱。
- value
-
String
Platform::String
winrt::hstring
屬性的新值。
範例
element.SetAttributeNS("http://www.w3.org/2000/svg", "width", "3");
element.SetAttributeNS(winrt::box_value(L"http://www.w3.org/2000/svg"), L"width", L"3");