ToolTipService.GetToolTip(DependencyObject) メソッド

定義

オブジェクトに対する ToolTip 添付プロパティの値を取得します。

public:
 static System::Object ^ GetToolTip(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static object GetToolTip (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetToolTip : System.Windows.DependencyObject -> obj
Public Shared Function GetToolTip (element As DependencyObject) As Object

パラメーター

element
DependencyObject

プロパティ値の読み取り元となるオブジェクト。

戻り値

オブジェクトの ToolTip プロパティ値。

属性

次の例は、添付プロパティの値を取得する方法を ToolTipService.ToolTipProperty 示しています。 メソッドは FindName 、 という名前 ellipse2の オブジェクトを検索します。これは です Ellipse

target = (UIElement)ToolTipService.GetToolTip(
 (DependencyObject)FindName("ellipse2"));
target = CType(ToolTipService.GetToolTip(CType(FindName("ellipse2"), DependencyObject)), UIElement)

適用対象

こちらもご覧ください