XmlAttribute.Value Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la valeur d'attribut.
public:
property Platform::String ^ Value { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Value();
void Value(winrt::hstring value);
public string Value { get; set; }
var string = xmlAttribute.value;
xmlAttribute.value = string;
Public Property Value As String
Valeur de propriété
Valeur de l'attribut
Remarques
Lorsque la valeur est récupérée, elle est retournée sous forme de chaîne. Lorsque la valeur est définie, un nœud de texte est créé avec le contenu non traité de la chaîne fournie.