バージョン

HasAncestor メソッド

引き渡された要素がこの要素の親チェインに存在する場合 True を返します。
シンタックス
'宣言
 
Public Function HasAncestor( _
   ByVal ancestor As UIElement _
) As Boolean
public bool HasAncestor( 
   UIElement ancestor
)

パラメータ

ancestor
チェックする UIElement Element

戻り値の型

要素が親チェーンの場合 True。それ以外の場合は False
使用例
Imports Infragistics.Win

Private Function IsRowUIElementChild(ByVal rowElement As UltraWinGrid.RowUIElement, ByVal element As UIElement) As Boolean

    ' Checks to see if element is a child of rowElement
    If element.HasAncestor(rowElement) Then
        Return True
    Else
        Return False
    End If

End Function
using Infragistics.Win;
		
private bool IsRowUIElementChild(UltraWinGrid.RowUIElement rowElement, UIElement element)
{

	// Checks to see if element is a child of rowElement
	if(element.HasAncestor(rowElement))
		return true;
	else
		return false;

}
参照