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
using System;
using System.ComponentModel;
using Vintasoft.Annotation;
namespace AnnotationDemo
{
public class MyTextAnnotation : TextAnnotation
{
[Browsable(false)]
public new string Text
{
get { return base.Text; }
set { base.Text = value; }
}
}
}
Best regards, Alexander