Get EffectiveName of DynamicBlockReference #75
-
I have been struggling trying to get the EffectiveName for a BlockReference, specifically of a Dynamic Block.
As an example, I'm able to get the effective name using win32com by doing this:
Let me know if you need more information. This is a great project and I appreciate all the work you and others have put in! |
Beta Was this translation helpful? Give feedback.
Answered by
CEXT-Dan
Jun 16, 2024
Replies: 1 comment 1 reply
-
bref.getBlockName() should return the effective name if it's dynamic. if that doesn't work then maybe try dynref = Db.DynBlockReference(id)
dynid = dynref.dynamicBlockTableRecord() |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kwollaston
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bref.getBlockName() should return the effective name if it's dynamic.
if that doesn't work then maybe try