Declined
Last Updated: 20 Feb 2014 15:23 by ADMIN
ADMIN
Boryana
Created on: 20 Feb 2012 04:55
Category: PageView
Type: Feature Request
7
ADD. Visible property to RadPageViewPage
Add a Visible property to RadPageView Pages for all modes
1 comment
ADMIN
Stefan
Posted on: 06 Feb 2014 16:12
We consider that implementation of this functionality is not necessary. Desired functionality can be easily achieved with the
Visible and Visibility properties of RadPageViewPage and it's Item. For example:
C#
this.radPageViewPage1.Item.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
this.radPageViewPage1.Visible = false;
VB
Me.radPageViewPage1.Item.Visibility = Telerik.WinControls.ElementVisibility.Collapsed
Me.radPageViewPage1.Visible = False