Hi,
I've got a radPageView in Backstage view mode, how to set the height of an item in the tab list ?
I've been able to achieve this with this code snippet
But I want to do this in design mode, not programatically.
Thanks
I've got a radPageView in Backstage view mode, how to set the height of an item in the tab list ?
I've been able to achieve this with this code snippet
foreach
(RadPageViewPage page
in
this
.radPageView.Pages)
{
page.Item.MaxSize =
new
Size(0, 20);
}
But I want to do this in design mode, not programatically.
Thanks