ToolTipService.GetVerticalOffset(DependencyObject) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il valore della proprietà associata VerticalOffset per un oggetto.
public:
static double GetVerticalOffset(System::Windows::DependencyObject ^ element);
[System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))]
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static double GetVerticalOffset (System.Windows.DependencyObject element);
[<System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))>]
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetVerticalOffset : System.Windows.DependencyObject -> double
Public Shared Function GetVerticalOffset (element As DependencyObject) As Double
Parametri
- element
- DependencyObject
Oggetto da cui viene letto il valore della proprietà.
Restituisce
Il valore della proprietà VerticalOffset dell'oggetto.
- Attributi
Esempio
Nell'esempio seguente viene illustrato come ottenere il valore per la ToolTipService.VerticalOffset
proprietà associata. Il FindName metodo trova l'oggetto denominato ellipse2
, che è un Ellipseoggetto .
myDouble = ToolTipService.GetVerticalOffset(
(DependencyObject)FindName("ellipse2"));
myDouble = ToolTipService.GetVerticalOffset(CType(FindName("ellipse2"), DependencyObject))