HI dudy,
I`m programming a project in C# language, How can I change width of item column in PageViewer in backstage mode?
and i dont know how can I move the vertical line near items, or change its property such as size, width, color and elc, I think knowing it will helps me.
Thanks alot
To change the particular properties, you may use the following code:
RadPageViewBackstageElement backStageElement = radPageView1.ViewElement as RadPageViewBackstageElement;
StripViewItemContainer itemContainer = backStageElement.ItemContainer as StripViewItemContainer;
StripViewItemLayout itemLayout = backStageElement.ItemContainer.ItemLayout as StripViewItemLayout;
itemContainer.MinSize = new Size(150, 0);
itemLayout.BorderRightWidth = 5;
itemLayout.BorderRightColor = Color.Red;
itemLayout.BorderRightShadowColor = Color.Red;
These will help you control the size, color, thickness, etc. of the line near the items, and also move the line to left or right, changing the width of the element in this way.