Last active
July 21, 2022 04:55
-
-
Save giobel/798bfb84a6ffc23e8e8935379e2acde9 to your computer and use it in GitHub Desktop.
Tekla Snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## C# Snippets for Tekla ## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ModelViewEnumerator viewEnumerator = ViewHandler.GetVisibleViews(); | |
View activeView = null; | |
while (viewEnumerator.MoveNext()) | |
{ | |
View view = viewEnumerator.Current; | |
activeView = view; | |
//MessageBox.Show(view.Name); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment