Hello, I can't figure out how to change the the page buttons height while in outlook mode.
I've look through the all UI elements but I didn't manage to find anything. Please help me! :)
Thank you.
1 Answer, 1 is accepted
0
Stefan
Telerik team
answered on 22 Mar 2012, 02:43 PM
Hello Fernando,
Thank you for writing.
Please consider the following code snippet, which demonstrates how to set the height of the items in Outlook mode:
RadPageViewOutlookElement el = radPageView1.ViewElement as RadPageViewOutlookElement;
foreach (RadPageViewItem item in el.Items)
{
//increase the item size
item.MinSize = new Size(0, 50);
//decrease the item size
//item.MaxSize = new Size(0, 20);
}
I hope that you find this information useful. Let me know if I can be of further assistance.