Group: Forum Members
Last Active: 7 Years Ago
Posts: 1,
Visits: 4
|
I can do the following to hide the page navigator from a drawing view: m_DrawingView.PageNavigator.Visibility = ENVisibility.Hidden; However, it still leaves the big space at the bottom empty. How can I hide the page navigator and hide that space away?
|
Group: Forum Members
Last Active: 2 hours ago
Posts: 3,054,
Visits: 4,009
|
Hi, Setting the visibility of a widget to Hidden, only makes it invisible, but it still occupies a given area in its container. To both hide the widget and free (collapse) the area it occupies, you should set it visibility to Collapsed: m_DrawingView.PageNavigator.Visibility = ENVisibility.Collapsed;
Best Regards, Nevron Support Team
|