ContainerVisual.ContentBounds Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
içeriğinin ContainerVisualsınırlayıcı kutusunu alır.
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
Özellik Değeri
Rect Sınırlayıcı kutuyu belirten bir.
Örnekler
Aşağıdaki örnekte, bir ContainerVisual nesnenin sınırlayıcı dikdörtgeninin nasıl alınıyor olduğu gösterilmektedir.
// 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)
Açıklamalar
DescendantBounds bir nesnenin tüm alt ContainerVisual öğeleri için tüm içerik sınırlayıcı kutularının birleşimini döndürmek için özelliğini kullanın, ancak nesnenin kendisini döndürmeyin.