Collection: 3DSelectedElements
- Updated2024-09-12
- 1 minute(s) read
(3DAxisSystem | Collections) > Collection: 3DSelectedElements
Collection: 3DSelectedElements
Collection of all 3DSelectedElement objects in DIAdem REPORT. Use the 3DSelectedElements collection to access a selected element in a 3D axis system.
The following example checks whether elements of a 3D axis system are selected in the current worksheet and displays the name of the axis system, the number of selected elements, and their type:
| VBScript | Python |
Dim oMyReportObj, oMyReportObjects, oMySelection, sOutput Set oMyReportObjects = Report.ActiveSheet.Objects For Each oMyReportObj in oMyReportObjects If oMyReportObj.ObjectType = eReportObject3DAxisSystem Then Set oMySelection = oMyReportObj.SelectedElements sOutput = "Object name: " & oMyReportObj.Name & vbCrLf &_ "Number of selected elements: " & oMySelection.Count & vbCrLf For I = 1 to oMySelection.Count sOutput = sOutput & "Element type: " & oMySelection.Item(i).Type & vbCrLf Next Call MsgBoxDisp(sOutput) End If Next