バージョン

GetDescendant(Type,Object) メソッド

渡されたコンテキストを満たす、要求された型の要素を返します。
シンタックス
'宣言
 
Public Overloads Overridable Function GetDescendant( _
   ByVal type As Type, _
   ByVal context As Object _
) As UIElement
public virtual UIElement GetDescendant( 
   Type type,
   object context
)

パラメータ

type
検索対象の UIElement の System.Type (または基本クラス タイプ)。
context
要素のコンテキストに一致する必要があるコンテキスト。

戻り値の型

指定された型とコンテキストに一致する、この要素の子孫要素。
使用例
Imports System.Windows.Forms
Imports Infragistics.Win
Imports System.Diagnostics

Private Sub ultraProgressBar1_MouseDown(ByVal sender As Object, ByVal e As MouseEventArgs) Handles MyBase.MouseDown
   
    ' ProgressFillTextUIElement のヒット テスト
    Dim fillTextUIElement As UIElement
 	fillTextUIElement = Me.ultraProgressBar1.UIElement.GetDescendant( _
		GetType(UltraWinProgressBar.ProgressFillTextUIElement))
    

    If Not fillTextUIElement Is Nothing Then
	  If fillTextUIElement.Contains(new Point(e.X,e.Y))
            Debug.WriteLine("Hit ProgressFillTextUIElement")
      End If
 		End If

End Sub
using System.Windows.Forms;
	usingInfragistics.Win;
	usingSystem.Diagnostics;

private void ultraProgressBar1_MouseDown(object sender, MouseEventArgs e)
{

	// ProgressFillTextUIElement のヒット テスト

	UIElement fillTextUIElement = this.ultraProgressBar1.UIElement.GetDescendant(typeof(UltraWinProgressBar.ProgressFillTextUIElement));

	if(null != fillTextUIElement)
		if(fillTextUIElement.Contains(new Point(e.X,e.Y))
			Debug.WriteLine("Hit ProgressFillTextUIElement");

}
参照