Click here to Skip to main content
15,888,026 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I have a radPageView with some Pages. I wants to hide a page.
But there is not property “Visible” for this object such below line:

radPageViewPage1.Visible = false;

How can I do this?

Thanks very much
Posted

1 solution

Hello,
Please try this.

If you want to show then
radPageViewPage1.Item.Visibility = ElementVisibility.Visible

If you want to hide then
radPageViewPage1.Item.Visibility = ElementVisibility.Collapsed
 
Share this answer
 
Comments
armm1388 13-Aug-13 5:39am    
thanks very very much Savalia Manoj M

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900