Anonymous
in reply to:
Anonymous
01-20-2020
06:00 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
01-20-2020
06:00 AM
I do something like this to pull my model parameters into my drawing, though I use them to populate a table.
Dim oParameters As Parameters = oModelRefDoc.ComponentDefinition.Parameters
Dim OALHeight As Parameter = oParameters.Item("OALHeight")
Of course oModelRefDoc has been defined to be the document I want to pull the parameter from. Is there a reason the standard dimension will not work for you? You can automate placing dimensions as well by using different code.
Hope this helps,
Chancellor