Access the Mesh Recording Worksheet via python

Dominique_Cracovia
Member Posts: 6
**
in Structures
Is is possible to access the Mesh Recording Worksheet via python API? I'm Using 22R2 and nothing much happens while recording besides:
import toolbar toolbar.ToggleWorksheetVisibility(ExtAPI)
Let's say I have a 100 Named Selections that I would like to have meshed in a sequence. Can I make it faster In 2022R2?
Tagged:
0
Best Answer
-
Hello!
Try something like that:
(assuming your named selection is saved to a variable ns1)ws=Model.Mesh.Worksheet
ws.AddRow()
ws.SetNamedSelection(0,ns1)
ws.SetActiveState(0,1)
ws.AddRow()1
Answers
-
Hello! I am not sure but I think someone in the @AKD-Scripting-Team might be able to help
0 -
@Tom David Thank you very much. That's exactly it!
0