다음을 통해 공유


ContainerVisual.ContentBounds 속성

정의

ContainerVisual의 콘텐츠에 대한 경계 상자를 가져옵니다.

public:
 property System::Windows::Rect ContentBounds { System::Windows::Rect get(); };
public System.Windows.Rect ContentBounds { get; }
member this.ContentBounds : System.Windows.Rect
Public ReadOnly Property ContentBounds As Rect

속성 값

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)

설명

DescendantBounds 개체 자체가 아닌 개체의 모든 하위 항목에 대해 모든 콘텐츠 경계 상자의 ContainerVisual 합치면 이 속성을 사용합니다.

적용 대상