Compartilhar via


ContainerVisual.DescendantBounds Propriedade

Definição

Obtém a união de todas as caixas delimitadoras de conteúdo para todos os descendentes do ContainerVisual, mas não incluindo o conteúdo do 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

Valor da propriedade

Rect

Uma Rect que especifica a caixa delimitadora de combinação.

Exemplos

O exemplo a seguir mostra como recuperar o retângulo delimitador dos descendentes de um 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)

Comentários

Obtenha a ContentBounds propriedade para retornar o retângulo da caixa delimitadora em cache para o ContainerVisual próprio.

Aplica-se a