Source code for abaqus.DisplayGroup.DisplayGroupSession
from .DisplayGroup import DisplayGroup
from .Leaf import Leaf
from ..Session.SessionBase import SessionBase
[docs]class DisplayGroupSession(SessionBase):
[docs] def DisplayGroup(self, name: str, leaf: Leaf) -> DisplayGroup:
"""This method creates a DisplayGroup object.
Notes
-----
This function can be accessed by:
.. code-block:: python
session.DisplayGroup
Parameters
----------
name
A String specifying the repository key.
leaf
A Leaf object specifying the items in the display group.
Returns
-------
A DisplayGroup object.
"""
self.displayGroups[name] = displayGroup = DisplayGroup(name, leaf)
return displayGroup