Search found 84 matches

by IntegraHarlan
Wed Oct 21, 2020 12:23 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Printing multiple pages per sheet.
Replies: 1
Views: 1360

Printing multiple pages per sheet.

Hi,
Is there a way to print multiple pages per sheet using the AnnotatedPdfPrintDocument class?


Thanks
Harlan
by IntegraHarlan
Thu Jul 02, 2020 10:11 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: TextPadding property for PdfFreeTextAnnotations do not seem to have an affect.
Replies: 3
Views: 1126

Re: TextPadding property for PdfFreeTextAnnotations do not seem to have an affect.

Hi Alexander,

So the TextPadding property pads that annotation rectangle, and not the text?
I am trying to add text padding so there is more separation of the text from the annotation border.
Is there a way to do this?

Thanks
Harlan
by IntegraHarlan
Thu Jul 02, 2020 6:46 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Automatically size PdfFreeTextAnotation while typing.
Replies: 10
Views: 2328

Re: Automatically size PdfFreeTextAnotation while typing.

Hi Alexander You can just use the PdfFreeTextExpansionController class that you sent me and add the code to add the font. Using your sample PdfTextFields.pdf which uses the Times-Rome Pdf font I added the following line to the TextBoxShowing method. Add the line after the _currentFont field is set. ...
by IntegraHarlan
Thu Jul 02, 2020 4:36 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: TextPadding property for PdfFreeTextAnnotations do not seem to have an affect.
Replies: 3
Views: 1126

TextPadding property for PdfFreeTextAnnotations do not seem to have an affect.

Hi, When I apply text Padding to a PdfFreeTextAnnotation, I do not see the padding affect. I tried it on your demo project for PdfFreeTextAnnotations and I do not see the padding affect in the demo project. I set the padding before the annotation is built. textAnnotation.TextPadding = new PaddingF(1...
by IntegraHarlan
Thu Jul 02, 2020 12:46 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Automatically size PdfFreeTextAnotation while typing.
Replies: 10
Views: 2328

Re: Automatically size PdfFreeTextAnotation while typing.

Hi Alexander,
I tried setting the font in the text box control to match the font in the annotation.
I am still seeing the same issue with the text moving around in the text box and premature wrapping.

Thanks
Harlan
by IntegraHarlan
Fri Jun 26, 2020 1:42 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Automatically size PdfFreeTextAnotation while typing.
Replies: 10
Views: 2328

Re: Automatically size PdfFreeTextAnotation while typing.

Hi Alexander, I finally got a chance to implement the PdfFreeTextExpansionController class you provided. It does not work as I would expect it to. As I type, the text will sometimes move around in the annotation instead of the annotation sizing itself. This is most noticeable when I assign a maximum...
by IntegraHarlan
Wed Jun 24, 2020 1:46 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Comment Annotation disappears when multi-selecting in edit mode.
Replies: 1
Views: 10741

Comment Annotation disappears when multi-selecting in edit mode.

Hi, If i try to select more than one comment annotations in edit mode, the previously selected comment disappears. I am able to reproduce this in the Winforms PdfEditorDemo applications. Steps: Open a pdf file in the demo app. Add two comment annotations. Select Edit interaction mode. Click on the P...
by IntegraHarlan
Fri May 22, 2020 7:08 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Synchronizing document page order with the image order.
Replies: 1
Views: 866

Synchronizing document page order with the image order.

HI, In our application we have an ImageViewer and a ThumbnailViewer. The ThumbnailViewer has the ImageViewer set for the MasterViewer propery. When the document is loaded we also create PdfDocument from the ImageViewer. _pdfDocument = PdfDocumentController.GetPageAssociatedWithImage(_documentViewer....
by IntegraHarlan
Fri May 22, 2020 3:18 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: retaining text orientation on rotated PdfFreeTextAnnotations
Replies: 3
Views: 1025

Re: retaining text orientation on rotated PdfFreeTextAnnotations

Thank you,
I have submitted a class that can be easily added to the PDFEditorDemo project through your support e-mail.
You should then be able to reproduce the problem I am having.

Thanks
by IntegraHarlan
Tue May 19, 2020 10:12 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: retaining text orientation on rotated PdfFreeTextAnnotations
Replies: 3
Views: 1025

retaining text orientation on rotated PdfFreeTextAnnotations

Hi, I am adding PdfFreeTextAnnotations to a page that has been rotated. I am using the suggested code from the following post in this forum https://www.vintasoft.com/forums/viewtopic.php?t=5730 . Using the AffineMatrix I am able to get the annotation in the correct orientation. However, as soon as I...