ToolTipService.GetHorizontalOffset(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 HorizontalOffset per un oggetto.
public:
static double GetHorizontalOffset(System::Windows::DependencyObject ^ element);
[System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))]
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static double GetHorizontalOffset (System.Windows.DependencyObject element);
[<System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))>]
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetHorizontalOffset : System.Windows.DependencyObject -> double
Public Shared Function GetHorizontalOffset (element As DependencyObject) As Double
Parametri
- element
- DependencyObject
Oggetto da cui viene letto il valore della proprietà.
Restituisce
Il valore della proprietà HorizontalOffset dell'oggetto.
- Attributi
Esempio
Nell'esempio seguente viene illustrato come ottenere il valore per la ToolTipService.HorizontalOffset
proprietà associata. Il FindName metodo trova l'oggetto denominato ellipse2
, che è un oggetto Ellipse.
double myDouble = ToolTipService.GetHorizontalOffset(
(DependencyObject)FindName("ellipse2"));
Dim myDouble As Double = ToolTipService.GetHorizontalOffset(CType(FindName("ellipse2"), DependencyObject))