Synthèse
The GroupElement object provides access to properties for group elements in a layout.
Discussion
The listElements method on the Layout object returns a Python list of layout elements. To return a list of only GroupElement objects, use the GROUP_ELEMENT constant for the element_type parameter. A wildcard value can also be used to further refine the search based on the element's name value. It is important that each element be given a unique name so that it can be easily referenced.
Group elements can be created using the createGroupElement method on the ArcGISProject class. To create a group element, elements must exist and be added to the required element_list parameter. In other words, you cannot create an empty group element. You can create group elements inside other existing group elements.
The GroupElement object is important for many of the map graphic and layout element creation methods. Like the GroupElement object, many of the other methods have a destination container parameter, and if the value is a group element, the newly created objects will be added to the specified group element. The container parameter can be a graphics layer in a map, a Layout, or a reference to an existing GroupElement object in a layout.
Remarque :
You can only group elements that are at the same level in the Contents pane. For example, you can group a graphic element, a group element, and a map surround element all positioned at the root of the Contents pane into a new group but you cannot group a graphic element at the root level and another graphic element in a group.
The deleteElement method on the Layout class allows you to delete elements in a layout. To remove group elements that may exist inside other group elements, you must delete group elements in opposite order because you must delete the child groups before the parent group. See the second code example below.
Remarque :
Prior to version 3.2, group elements in a layout were categorized as a GraphicElement and would return a type value of GRAPHIC_ELEMENT. To maintain compatibility with older scripts, the isGroup property was carried over from the GraphicElement object. It is not necessary to use this property with newer scripts because a group element now has a type value of GROUP_ELEMENT and can be searched and referenced using the Layout listElements method with the value of GROUP_ELEMENT for the element_type pick list.
Propriétés
Propriété | Explication | Type de données |
anchor (Lecture seule) | Returns one of the following string values that represent the current anchor position. To change the value, use the setAnchor method.
| String |
elementHeight (Lecture et écriture) | The height of the element in either layout page units or map units. | Double |
elementPositionX (Lecture et écriture) | The x-location of the element's anchor position in either layout page units or map units. | Double |
elementPositionY (Lecture et écriture) | The y-location of the element's anchor position in either layout page units or map units. | Double |
elementRotation (Lecture et écriture) | The element's rotation angle in degrees. Positive values rotate clockwise and negative values rotate counterclockwise. | Double |
elementWidth (Lecture et écriture) | The width of the element in either layout page units or map units. | Double |
locked (Lecture et écriture) | When set to True, the element cannot be graphically selected in the layout view. | Boolean |
name (Lecture et écriture) | The name of the element. It is important that all elements have a unique name so they can be easily referenced. | String |
type (Lecture seule) | Returns a value of GROUP_ELEMENT. | String |
visible (Lecture et écriture) | Returns True if the element is visible. | Boolean |
Vue d’ensemble des méthodes
Méthode | Explication |
getDefinition (cim_version) | Returns a graphic element's CIM definition. |
setAnchor (anchor) | The setAnchor method controls the anchor position for a GroupElement value. |
setDefinition (definition_object) | Sets a group element's CIM definition. |
Méthodes
getDefinition (cim_version)
Paramètre | Explication | Type de données |
cim_version | A string that represents the major version of the CIM that will be used.
| String |
Type de données | Explication |
Object | Returns the CIM definition for a GraphicElement value. |
For more information about working with the CIM and samples, see Python CIM access.
setAnchor (anchor)
Paramètre | Explication | Type de données |
anchor | A string that specifies the location of the anchor position.
| String |
Setting the anchor position is helpful because you can control how the element might expand when resized. For example, the default anchor position for a group element is BOTTOM_LEFT_CORNER. If you change the anchor location to TOP_RIGHT_CORNER, changing elementHeight will expand the element downward instead of upward (the default), and changing elementWidth will expand the element to the left.
setDefinition (definition_object)
Paramètre | Explication | Type de données |
definition_object | A modified CIM definition object originally retrieved using getDefinition. | Object |
For more information about working with the CIM and samples, see Python CIM access.
Exemple de code
The following script groups all GraphicElement objects into one group and all TextElement objects into a second group. Then both resulting group elements are grouped into a third, parent group. At the start of the script, all elements are at the root level of the Contents pane.
p = arcpy.mp.ArcGISProject('current')
lyt = p.listLayouts('Layout')[0]
#Group graphic elements
graElmList = []
for gra in lyt.listElements('GRAPHIC_ELEMENT'):
graElmList.append(gra)
graphics = p.createGroupElement(lyt, graElmList, 'Graphic Elements')
#Group text elements
txtElmList = []
for txt in lyt.listElements('TEXT_ELEMENT'):
txtElmList.append(txt)
text = p.createGroupElement(lyt, txtElmList, 'Text Elements')
#Group of groups
supGrp = p.createGroupElement(lyt, [graphics, text], 'Group of Groups')
The following script deletes all elements on a layout. If group elements exist inside other group elements, is important to remove group elements in reverse order because the child groups need to be removed before the parent groups.
p = arcpy.mp.ArcGISProject('current')
lyt = p.listLayouts('Layout')[0]
# delete all the group elements and their children in reverse order
for elm in reversed(lyt.listElements('GROUP_ELEMENT')):
lyt.deleteElement(elm)
# delete remaining elements
for elm in lyt.listElements():
lyt.deleteElement(elm)
Vous avez un commentaire à formuler concernant cette rubrique ?