ContainerVisual.DescendantBounds 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ContainerVisual의 내용을 제외한 ContainerVisual의 모든 하위 항목에 대한 모든 내용 경계 상자의 합집합을 가져옵니다.
public:
property System::Windows::Rect DescendantBounds { System::Windows::Rect get(); };
public System.Windows.Rect DescendantBounds { get; }
member this.DescendantBounds : System.Windows.Rect
Public ReadOnly Property DescendantBounds As Rect
속성 값
조합 경계 상자를 지정하는 Rect입니다.
예제
다음 예제에서는 개체의 하위 항목의 경계 사각형을 검색하는 ContainerVisual 방법을 보여 있습니다.
// Return the bounding rectangle for the ContainerVisual.
Rect rectBounds = containerVisual.ContentBounds;
// Expand the rectangle to include the bounding rectangle
// of the all of the ContainerVisual's descendants.
rectBounds.Union(containerVisual.DescendantBounds);
' Return the bounding rectangle for the ContainerVisual.
Dim rectBounds As Rect = containerVisual.ContentBounds
' Expand the rectangle to include the bounding rectangle
' of the all of the ContainerVisual's descendants.
rectBounds.Union(containerVisual.DescendantBounds)
설명
ContentBounds 자체에 대해 ContainerVisual 캐시된 경계 상자 사각형을 반환하는 속성을 가져옵니다.