ContainerVisual.DescendantBounds Eigenschaft

Definition

Ruft die Gesamtmenge aller umgebenden Felder des Inhalts für alle Nachfolgerelemente des ContainerVisual ab, doch ohne das umgebende Feld für den Inhalt des ContainerVisual.

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

Eigenschaftswert

Rect

Ein Rect, das das umgebende Feld der Gesamtmenge angibt.

Beispiele

Im folgenden Beispiel wird gezeigt, wie das begrenzungsgebundene Rechteck der Untergeordneten 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

Rufen Sie die ContentBounds Eigenschaft ab, um das zwischengespeicherte Begrenzungsfeldrechteck für sich ContainerVisual selbst zurückzugeben.

Gilt für