AddLineAnnotInteractive Method (GdViewer)
In This Topic
Allows users to interactively add a new line annotation using the mouse on the current page of the document displayed in the GdViewer control. The annotation object is added following all the parameters you have specified and respecting the dimensions users will define using the mouse as well.
A line annotation presents a single straight line with specified cap styles on its ending points.
The type of the newly added annotation object is GdPictureAnnotationType.AnnotationTypeLine. You can change the annotation properties directly using the GdPicture14.Annotations.AnnotationLine class before or after the successful creation of the annotation object. Please refer to both the BeforeAnnotationAddedByUser and the AnnotationAddedByUser events for how to achieve this.
Be aware that the editing mode for annotations must be enabled using the SetAnnotationEditorMode method, otherwise this method will fail.
Allows users to interactively add a new line annotation using the mouse on the current page of the document displayed in the GdViewer control.
Syntax
'Declaration
Public Sub AddLineAnnotInteractive( _
ByVal As Color, _
ByVal As Single, _
ByVal As LineCap, _
ByVal As LineCap, _
ByVal As Single _
)
public void AddLineAnnotInteractive(
Color ,
float ,
LineCap ,
LineCap ,
float
)
public procedure AddLineAnnotInteractive(
: Color;
: Single;
: LineCap;
: LineCap;
: Single
);
public function AddLineAnnotInteractive(
: Color,
: float,
: LineCap,
: LineCap,
: float
);
public: void AddLineAnnotInteractive(
Color ,
float ,
LineCap ,
LineCap ,
float
)
public:
void AddLineAnnotInteractive(
Color ,
float ,
LineCap ,
LineCap ,
float
)
Parameters
- BorderColor
- A color object that defines the required color of the newly added line annotation. It corresponds to the AnnotationLine.StrokeColor property.
- BorderWidth
- The width of the newly added line annotation, in inches. It corresponds to the AnnotationLine.BorderWidth property.
- StartCap
- A member of the LineCap enumeration. Specifies the cap style used at the beginning of a drawn line.
- EndCap
- A member of the LineCap enumeration. Specifies the cap style used at the end of a drawn line.
- Opacity
- The opacity value of the newly added line annotation, from 0 (full transparency) to 1 (full opacity).
Example
How to allow users to interactively add a line annotation on the currently displayed page.
'We assume that the GdViewer1 control has been properly integrated.
Sub buttonAddLine_Click(ByVal sender As Object, ByVal e As EventArgs)
GdViewer1.AddLineAnnotInteractive(Color.BlueViolet, 0.15F, System.Drawing.Drawing2D.LineCap.Triangle, System.Drawing.Drawing2D.LineCap.ArrowAnchor, 0.75F)
If GdViewer1.GetStat() <> GdPictureStatus.OK Then MessageBox.Show("Error! Status: " + GdViewer1.GetStat().ToString(), "AddLineAnnotInteractive")
End Sub
//We assume that the GdViewer1 control has been properly integrated.
void buttonAddLine_Click(object sender, EventArgs e)
{
GdViewer1.AddLineAnnotInteractive(Color.BlueViolet, 0.15f, System.Drawing.Drawing2D.LineCap.Triangle, System.Drawing.Drawing2D.LineCap.ArrowAnchor, 0.75f);
if (GdViewer1.GetStat() != GdPictureStatus.OK) MessageBox.Show("Error! Status: " + GdViewer1.GetStat().ToString(), "AddLineAnnotInteractive");
}
Example
How to allow users to interactively add a line annotation on the currently displayed page.
'We assume that the GdViewer1 control has been properly integrated.
Sub buttonAddLine_Click(ByVal sender As Object, ByVal e As EventArgs)
GdViewer1.AddLineAnnotInteractive(Color.BlueViolet, 0.15F, System.Drawing.Drawing2D.LineCap.Triangle, System.Drawing.Drawing2D.LineCap.ArrowAnchor, 0.75F)
If GdViewer1.GetStat() <> GdPictureStatus.OK Then MessageBox.Show("Error! Status: " + GdViewer1.GetStat().ToString(), "AddLineAnnotInteractive")
End Sub
//We assume that the GdViewer1 control has been properly integrated.
void buttonAddLine_Click(object sender, EventArgs e)
{
GdViewer1.AddLineAnnotInteractive(Color.BlueViolet, 0.15f, System.Drawing.Drawing2D.LineCap.Triangle, System.Drawing.Drawing2D.LineCap.ArrowAnchor, 0.75f);
if (GdViewer1.GetStat() != GdPictureStatus.OK) MessageBox.Show("Error! Status: " + GdViewer1.GetStat().ToString(), "AddLineAnnotInteractive");
}
See Also