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
private void annotationViewer1_AnnotationBuildingFinished(object sender, EventArgs e)
{
AnnotationBase anno = annotationViewer1.SelectedAnnotation;
TextAnnotation textAnno = anno as TextAnnotation;
if (textAnno != null)
{
annotationViewer1.Controls.Add(textAnno.TextBox);
}
}
Best regards, Alexander
textAnno.TextBox.Location = New Point(CInt(textAnno.Location.X), CInt(textAnno.Location.Y))Otherwise the textbox appear on location (0,0).