ToolTipService.GetHasDropShadow(DependencyObject) 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.
Obtient la valeur de la propriété jointe HasDropShadow pour un objet.
public:
static bool GetHasDropShadow(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static bool GetHasDropShadow (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetHasDropShadow : System.Windows.DependencyObject -> bool
Public Shared Function GetHasDropShadow (element As DependencyObject) As Boolean
Paramètres
- element
- DependencyObject
Objet à partir duquel la valeur de propriété est lue.
Retours
Valeur de la propriété HasDropShadow de l'objet.
- Attributs
Exemples
L’exemple suivant montre comment obtenir la valeur de la ToolTipService.HasDropShadow
propriété jointe. La FindName méthode recherche l’objet appelé ellipse2
, qui est un Ellipse.
bool myBool = ToolTipService.GetHasDropShadow(
(DependencyObject)FindName("ellipse2"));
Dim myBool As Boolean = ToolTipService.GetHasDropShadow(CType(FindName("ellipse2"), DependencyObject))