[docs]classLayoutCls:"""Layout commands group definition. 7 total commands, 7 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("layout",core,parent)@propertydefidentify(self):"""identify commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_identify'):from.IdentifyimportIdentifyClsself._identify=IdentifyCls(self._core,self._cmd_group)returnself._identify@propertydefcatalog(self):"""catalog commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_catalog'):from.CatalogimportCatalogClsself._catalog=CatalogCls(self._core,self._cmd_group)returnself._catalog@propertydefadd(self):"""add commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_add'):from.AddimportAddClsself._add=AddCls(self._core,self._cmd_group)returnself._add@propertydefreplace(self):"""replace commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_replace'):from.ReplaceimportReplaceClsself._replace=ReplaceCls(self._core,self._cmd_group)returnself._replace@propertydefsplitter(self):"""splitter commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_splitter'):from.SplitterimportSplitterClsself._splitter=SplitterCls(self._core,self._cmd_group)returnself._splitter@propertydefmove(self):"""move commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_move'):from.MoveimportMoveClsself._move=MoveCls(self._core,self._cmd_group)returnself._move@propertydefremove(self):"""remove commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_remove'):from.RemoveimportRemoveClsself._remove=RemoveCls(self._core,self._cmd_group)returnself._removedefclone(self)->'LayoutCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=LayoutCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group