Message 1 of 2
Same appearance in all views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Is it possible to set the same appearance for a part in every view? Currently, I have multiple views, and my iLogic code changes the part's appearance, but only in the active view. I need the multiple views because, in the end, I generate a .png image from each view and save them in a folder.
How to "copy" the appearance of one view to another. I'm not changing the appearance within individual parts. The code to change the view is, its just part of code:
Dim czarny As Asset czarny = oDoc.AppearanceAssets.Item(1) Select Case KOLOR_LAWETY Case = "Czarny (RAL 9005)" kolor = czarny
End select If CZY_KOLOR_LAWETY2 = False clearOverrideColor Else If CZY_KOLOR_LAWETY2 = True Try Component.InventorComponentInThisContext("Profil platforma uchylna").Appearance = kolor Component.InventorComponentInThisContext("Platforma spawana").Appearance = kolor
End if