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 объекта, но не самого объекта.

Применяется к