Class ContainerUIElement3D
Represents a container for Visual3D objects.
Inherited Members
Namespace: Telerik.Windows.Media.Media3D
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ContainerUIElement3D : UIElement3D, INotifyPropertyChanged, ITreeElement3D, ITreeNode3D
Constructors
ContainerUIElement3D()
Initializes a new instance of the ContainerUIElement3D class.
Declaration
public ContainerUIElement3D()
Properties
Children
Gets a Visual3DCollection of child elements of this ContainerUIElement3D object.
Declaration
public Visual3DCollection Children { get; }
Property Value
Visual3DCollection
|
Visual3DChildrenCount
Gets the number of child elements for the Visual3D object.
Declaration
protected override int Visual3DChildrenCount { get; }
Property Value
System.Int32
|
Overrides
Methods
GetVisual3DChild(Int32)
Returns the specified Visual3D in the parent Visual3DCollection
Declaration
protected override Visual3D GetVisual3DChild(int index)
Parameters
System.Int32
index
The index. |
Returns
Visual3D
|
Overrides
OnAncestor3DChanged(ITreeNode3D, ITreeNode3D)
Called after the parent of the target
is changed.
Declaration
protected override void OnAncestor3DChanged(ITreeNode3D target, ITreeNode3D oldParent)
Parameters
ITreeNode3D
target
The element whose parent is changed. |
ITreeNode3D
oldParent
The old parent. |
Overrides
OnAncestor3DChanging(ITreeNode3D, ITreeNode3D)
Called before the parent of the target
is changed to newParent
.
Declaration
protected override void OnAncestor3DChanging(ITreeNode3D target, ITreeNode3D newParent)
Parameters
ITreeNode3D
target
The element whose parent is being changed. |
ITreeNode3D
newParent
The parent that will be set. |