XamlDirect.ClearProperty(IXamlDirectObject, XamlPropertyIndex) Méthode
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.
Efface la valeur de la propriété spécifiée sur un objet IXamlDirectObject donné.
public:
virtual void ClearProperty(IXamlDirectObject ^ xamlDirectObject, XamlPropertyIndex propertyIndex) = ClearProperty;
void ClearProperty(IXamlDirectObject const& xamlDirectObject, XamlPropertyIndex const& propertyIndex);
public void ClearProperty(IXamlDirectObject xamlDirectObject, XamlPropertyIndex propertyIndex);
function clearProperty(xamlDirectObject, propertyIndex)
Public Sub ClearProperty (xamlDirectObject As IXamlDirectObject, propertyIndex As XamlPropertyIndex)
Paramètres
- xamlDirectObject
- IXamlDirectObject
Référence au IXamlDirectObject spécifique.
- propertyIndex
- XamlPropertyIndex
Référence à la propriété à effacer de la liste des propriétés prises en charge dans l’énumération XamlPropertyIndex .
Exemples
L’exemple suivant montre comment effacer la valeur de la propriété MinHeight d’un élément Border via les API XamlDirect.
XamlDirect xd = XamlDirect.GetDefault();
IXamlDirectObject border = xd.CreateInstance(XamlTypeIndex.Border);
xd.ClearProperty(border, XamlPropertyIndex.FrameworkElement_MinHeight);
XamlDirect^ xd = XamlDirect::GetDefault();
IXamlDirectObject^ border = xd->CreateInstance(XamlTypeIndex::Border);
xd->ClearProperty(border, XamlPropertyIndex::FrameworkElement_MinHeight);