Tutorial — Femap Api

' 6. Update the view App.feViewRegenerate (1) MsgBox "Done! Moved elements > 100 to group: " & myGroup.name End Sub

Open FEMAP, press Ctrl+Shift+V to open the VBA editor, click Record , create a simple geometry, stop recording, and study the code. That single exercise is worth more than reading a hundred pages. femap api tutorial

' 4. Loop through elements For Each elem In elemSet If elem.ID > 100 Then ' 5. Add element to the new group elem.InGroup (newGroupID) ' True = add to group End If Next elem create a simple geometry