Group: Forum Members
Last Active: 2 Years Ago
Posts: 7,
Visits: 85
|
Hi , I tried to have a custon size for a page but cant do it . I followed the code in the helpopenvision section but I got the this error : ' NDrawingView ' does not contain a definition for ' Drawing ' and no accessible extension method ' Drawing ' accepting a first argument of type ' NDrawingView ' could be found ( are you missing a using directive or an assembly reference ?)& nbsp ; with the following line: NDrawing drawing = drawingView.Drawing;
|
Group: Forum Members
Last Active: Last Month
Posts: 3,055,
Visits: 4,052
|
Hi Richard , The Drawing property of the NDrawingView has been changed to Content , so to get the drawing of a drawing view use the following line of code : NDrawing drawing = drawingView.Content; NDrawing drawing = drawingView.Content;
Regarding changing of the page size, please take a look at the following documentation topic: NOV Diagram Pages
Best Regards, Nevron Support Team
|