Make drawing control landscape

J

jpabich

How do I get the drawing control on my screen to be landscape rather
than portrait?
 
M

Michel LAPLANE

You must do it in getting the pagesheet of the active page of the drawing
control and change the PageWidth cell value with PageHeight cell value...

For example Visio.Shape visShape = axDC.Document.Pages[1].PageSheet;
 
Top