Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Is it possible to get from which view the projected view is made and how to do it?
Thank you
Solved! Go to Solution.
Hi,
Is it possible to get from which view the projected view is made and how to do it?
Thank you
Solved! Go to Solution.
Is this something you are looking for?
Dim oView As DrawingView = ActiveSheet.View("View Name").View ' Add your view name MessageBox.Show(oView.ParentView.Name) ' Parent view will only return a value if the view is dependent on something, else it will return nothing.