Group

Overview

Group is a class in Aspose.3D FOSS for Python. Inherits from: A3DObject.

A Group represents the logical relationships of Node.

This class declares 5 methods for Group objects in Python programs. Available methods include: __init__, find_property, get_property, remove_property, set_property. All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package. Properties: groups, name, nodes, parent, properties.

Properties

NameTypeAccessDescription
parent'Group'ReadParent group of current group.
groups``ReadSub-groups.
nodes``ReadThe nodes in this group.
namestrRead/WriteGets or sets the name.
propertiesPropertyCollectionReadGets the properties.

Methods

SignatureDescription
__init__(name: str)Calls init(name) on this Group instance.
find_property(property_name: str)Calls find_property(property_name) on this Group instance.
get_property(property: str)Calls get_property(property) on this Group instance.
set_property(property: str, value)Sets the property value.
remove_property(property)Calls remove_property(property) on this Group instance.

See Also