ContainerVisual.Children Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the child collection of the ContainerVisual.
public:
property System::Windows::Media::VisualCollection ^ Children { System::Windows::Media::VisualCollection ^ get(); };
public System.Windows.Media.VisualCollection Children { get; }
member this.Children : System.Windows.Media.VisualCollection
Public ReadOnly Property Children As VisualCollection
Property Value
A VisualCollection that contains the children of the ContainerVisual.
Examples
The following example shows how to retrieve the VisualCollection from a ContainerVisual object.
if (containerVisual.Children.Count > 0)
{
VisualCollection collection = containerVisual.Children;
}
If containerVisual.Children.Count > 0 Then
Dim collection As VisualCollection = containerVisual.Children
End If
Applies to
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.