• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Contributor
    Dasharnb777
    Posts: 14
    Registered: ‎02-22-2012
    Accepted Solution

    Setting the scale of print.

    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.

    Please use plain text.
    Contributor
    Dasharnb777
    Posts: 14
    Registered: ‎02-22-2012

    Re: Setting the scale of print.

    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);

     

    Please use plain text.