Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hallo Everybody,
last time i found an article about sheet in drawings. There is a discproption about filling an multi-value parameter with sheet names of a drawing
If you want to show all the sheet names in the Form, then the easiest might be to use a Multi-Value User Parameter. 1) Create a Multi-Value User Parameter (named e.g. Sheets) in the drawing document through Manage >> Parameters, and turn it into a Multi-Value parameter by right-clicking on it and selecting Make Multi-Value - you don't have to set the values, the below rule will do that 2) Create a rule that will keep the values of that parameter up-to-date: Sheets rule Dim MyArrayList As New ArrayList For Each s In ThisDoc.Document.Sheets MyArrayList.Add(s.Name) Next MultiValue.List("Sheets") = MyArrayList
Now i want the same funktion for reprensations in a part or an assembly. So I change sheets with reprensatation, but it is not so easy like i think.
I'm searching the community but i did't found the answer.
Can someone help me to find the right way
thanks a lot

Jörg Weber
CAD Systemtechniker für AutoCAD, Inventor, Vault
Solved! Go to Solution.