.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Setting the scale of print.
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
114 Views, 1 Replies
04-09-2012 01:12 PM
Is there a way to print out the exact scale just like using manual printing or I just can use
// a 1 inch: 2 units scale acPlSetVdr.SetStdScale(acPlSet, 0.5); // a 2 inches: 1 unit scale acPlSetVdr.SetStdScale(acPlSet, 2);
By the way, setting for example (acPlSetVdr.SetStdScale(acPlSet, 2.04);
I get eInvalidInput error.
Thank you. I need to solve this one so much.
Solved! Go to Solution.
Re: Setting the scale of print.
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-09-2012 01:42 PM in reply to:
Dasharnb777
I got it!
Just use
CustomScale Scale = new CustomScale(1, 1.05); validator.SetCustomPrintScale(PlotSet, Scale);
