VintaSoft Annotation .NET Plug-in Discussions
Questions, comments and suggestions concerning VintaSoft Annotation .NET Plug-in.
Board index < VintaSoft Imaging < VintaSoft Annotation .NET Plug-in Discussions
Hello,
What functionality do you need?
Best regards, Alexander
When will the next version be made available?New version of VintaSoftImaging.NET Library will be released in 2-3 weeks.
Do you have any example code showing how I could extend a current control as a workaround in the meantime?Next code creates StampAnnotation object with "URL style":
StampAnnotation ann = new StampAnnotation();
ann.Text = "Url text";
FontFamily fontFamily = new FontFamily("Arial");
ann.Font = new Font(fontFamily, 15, FontStyle.Underline);
ann.Border = false;
ann.BorderColor = Color.Transparent;
ann.StampColor = Color.Blue;
ann.ZOrder = zOrder;
zOrder++;
annotationViewer1.BuildAnnotation(ann);
Mouse click event cannot be defined at the moment.