Sdílet prostřednictvím


ContainerVisual.ContentBounds Vlastnost

Definice

Získá ohraničující rámeček pro obsah 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

Hodnota vlastnosti

Rect

A Rect , který určuje ohraničující rámeček.

Příklady

Následující příklad ukazuje, jak načíst ohraničující obdélník objektu 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)

Poznámky

DescendantBounds Pomocí vlastnosti vrátí sjednocení všech ohraničujících polí obsahu pro všechny potomky objektuContainerVisual, ale ne samotný objekt.

Platí pro