ContainerVisual.ContentBounds 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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입니다.
예제
다음 예제에서는 개체의 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 합치면 이 속성을 사용합니다.