共用方式為


ToolTipService.GetHorizontalOffset(DependencyObject) 方法

定義

取得物件之 HorizontalOffset 附加屬性的值。

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

參數

element
DependencyObject

要讀取屬性值的物件。

傳回

Double

物件的 HorizontalOffset 屬性值。

屬性

範例

下列範例示範如何取得附加屬性的值 ToolTipService.HorizontalOffset 。 方法 FindName 會尋找名為 ellipse2 的物件,其為 Ellipse

double myDouble = ToolTipService.GetHorizontalOffset(
 (DependencyObject)FindName("ellipse2"));
Dim myDouble As Double = ToolTipService.GetHorizontalOffset(CType(FindName("ellipse2"), DependencyObject))

適用於

另請參閱