Message 1 of 2
iLogic Drawing Layer Visibility Toggle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I would like to figure out (with a little help from my friends) how to get Drawings to show the correct Visibility State in the Layer Drop Down after running the following iLogic Rule:
If ThisDrawing.Document.StylesManager.Layers("Visible Narrow (ANSI)").Visible = False Then ThisDrawing.Document.StylesManager.Layers("Visible Narrow (ANSI)").Visible = True
ElseIf ThisDrawing.Document.StylesManager.Layers("Visible Narrow (ANSI)").Visible = True Then ThisDrawing.Document.StylesManager.Layers("Visible Narrow (ANSI)").Visible = False End If iLogicVb.UpdateWhenDone = True
When I run this Rule the Lightbulb Icon in the Layer Drop Down doesn't change states unless I execute an Update All Sheets command.
Any help would be greatly appreciated