ContainerVisual.ContentBounds Eigenschaft

Definition

Ruft das umgebende Feld für den Inhalt des ContainerVisual ab.

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

Eigenschaftswert

Rect

Ein Rect, das das umgebende Feld angibt.

Beispiele

Im folgenden Beispiel wird gezeigt, wie das begrenzungsgebundene Rechteck eines ContainerVisual Objekts abgerufen wird.

// 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)

Hinweise

Verwenden Sie die DescendantBounds Eigenschaft, um die Union aller Inhaltsbindungsfelder für alle Untergeordneten eines ContainerVisual Objekts zurückzugeben, aber nicht das Objekt selbst.

Gilt für