ContainerVisual.ContentBounds Propiedad

Definición

Obtiene el rectángulo de selección para el contenido de 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

Valor de propiedad

Rect

Rect que especifica el rectángulo de selección.

Ejemplos

En el ejemplo siguiente se muestra cómo recuperar el rectángulo delimitador de un ContainerVisual objeto .

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

Comentarios

Utilice la DescendantBounds propiedad para devolver la unión de todos los cuadros de límite de contenido para todos los descendientes de un ContainerVisual objeto, pero no para el propio objeto.

Se aplica a