Class Group
Group class
A Group represents the logical relationships of Node.
public class Group : A3DObject
Constructors
| Name | Description |
|---|
| Group(string) | Construct a new instance of Group |
Properties
| Name | Description |
|---|
| Groups { get; } | Sub-groups |
| virtual Name { get; set; } | Gets or sets the name. |
| Nodes { get; } | The nodes in this group |
| Parent { get; } | Parent group of current group |
| Properties { get; } | Gets the collection of all properties. |
Methods
| Name | Description |
|---|
| FindProperty(string) | Finds the property. It can be a dynamic property (Created by CreateDynamicProperty/SetProperty) or native property(Identified by its name) |
| GetProperty(string) | Get the value of specified property |
| RemoveProperty(Property) | Removes a dynamic property. |
| RemoveProperty(string) | Remove the specified property identified by name |
| SetProperty(string, object) | Sets the value of specified property |
| override ToString() | Gets the string representation of Group |
See Also