Search found 7 matches

by guillaume.corneau
Tue Oct 06, 2020 4:28 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Convert Adobe API code to C# with Vintasoft
Replies: 1
Views: 1936

Convert Adobe API code to C# with Vintasoft

Hi, We currently have an Adobe plugin and we currently use Vintasoft to replace this old Plugin to new desing interface. So our customers will not need to have Adobe Pro and they will save monthy fees. All options are currently converted but I can't find a way to convert one of them. This is a part ...
by guillaume.corneau
Fri Sep 18, 2020 7:44 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Adding text annotation into PDF without mouse click
Replies: 5
Views: 1486

Re: Adding text annotation into PDF without mouse click

I found it Just one question, when I try to change the DisplayMode I got this message "The license is not found." Which kind of license I need to use this component ? This the license I have now VintaSoft Annotation .NET Plug-in - Site license VintaSoft PDF .NET Plug-in (Reader) - Site lic...
by guillaume.corneau
Thu Sep 17, 2020 9:49 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: I try to add text into RichText property of PdfFreeTextAnnotation.
Replies: 1
Views: 682

I try to add text into RichText property of PdfFreeTextAnnotation.

Hi,

I try to add text into RichText property of PdfFreeTextAnnotation but when I update the annotation, RichText is cleared
I tried your solution but I don't understand what do you meen

Do you have a code example to feed the RichText property without loose it's value ?

Thanks
by guillaume.corneau
Thu Sep 17, 2020 6:29 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Adding text annotation into PDF without mouse click
Replies: 5
Views: 1486

Re: Adding text annotation into PDF without mouse click

I want to add it into ImageViewer, not into PdfDocument

Thanks
by guillaume.corneau
Thu Sep 17, 2020 5:00 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: Adding text annotation into PDF without mouse click
Replies: 5
Views: 1486

Adding text annotation into PDF without mouse click

HI,

I search the way to add new text annotation in image viewer but without need to click on PDF
I currently able to add it but only with mouse click and drag to set the size

Thank you
by guillaume.corneau
Thu May 21, 2020 3:29 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Force FocusedIndexChanged when scroll
Replies: 3
Views: 1891

Re: Force FocusedIndexChanged when scroll

Hi, I added this code to ImageViewer Scroll and MouseWheel event and it works well private void UpdateFocusIndexWhenScroll() { var images = imageViewer1.GetVisibleImages(); if (images.Length > 0 && imageViewer1.FocusedIndex != images[0].SourceInfo.PageIndex) { imageViewer1.DisableAutoScrollT...
by guillaume.corneau
Wed May 20, 2020 8:20 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Force FocusedIndexChanged when scroll
Replies: 3
Views: 1891

Force FocusedIndexChanged when scroll

Hi,

I want to know if is possible to auto refresh the current focused index when we scroll the ImageViewer by scroll or mouse wheel

Now the focused index will be changed when I click on the visible page

I tried on then PDF Editor Demo shipped with Vintasoft installation

Thank you