Exception | Description |
---|---|
System.InvalidOperationException | Needs to run on the GUI thread |
System.InvalidOperationException | Layout view must be the active view |
//The active view must be a layout view. var lv = LayoutView.Active; if (lv == null) return; var layout = lv.Layout; if (layout == null) return; //Deactivate any activated map frame //Note: we are on the UI thread! lv.DeactivateMapFrame();//no-op if nothing activated //or - check if a map frame is activated first... if (lv.ActivatedMapFrame != null) //Note: we are on the UI thread! lv.DeactivateMapFrame();
Target Platforms: Windows 11, Windows 10