IsAnnotationVisibleAt Method (GdViewer)
Indicates, whether the specified point related to the current GdViewer control space, is contained within the bounding box of the annotation specified by its index. The coordinates of the required point, in pixels, relates to the current control space and the specified annotation relates to the currently displayed page of the document loaded in the GdViewer control.
Be aware that this method only handles GdPicture/XMP annotations.
public bool IsAnnotationVisibleAt(
int ,
int ,
int
)
public function IsAnnotationVisibleAt(
: Integer;
: Integer;
: Integer
): Boolean;
public function IsAnnotationVisibleAt(
: int,
: int,
: int
) : boolean;
public: bool IsAnnotationVisibleAt(
int ,
int ,
int
)
public:
bool IsAnnotationVisibleAt(
int ,
int ,
int
)
'Declaration
Public Function IsAnnotationVisibleAt( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
) As Boolean
Parameters
- AnnotationIdx
- The 0-based index of the required annotation within the current page of the displayed document. It must be a value from 0 to GdViewer.GetAnnotationCount-1.
- X
- The horizontal (X) coordinate of the required point, in pixels, related to the current GdViewer control space.
- Y
- The vertical (Y) coordinate of the required point, in pixels, related to the current GdViewer control space.
Return Value
true if the specified point is contained within the annotation bounding box, else false.
How to find out if the selected annotation is visible on the clicked point.
'We assume that the GdViewer1 control has been properly integrated.
Private Sub GdViewer1_MouseClick(ByVal sender As Object, ByVal e As MouseEventArgs) Handles GdViewer1.MouseClick
Dim annotIdx As Integer = GdViewer1.GetSelectedAnnotationIdx()
If annotIdx >= 0 Then
Dim isVisible As Boolean = GdViewer1.IsAnnotationVisibleAt(annotIdx, e.X, e.Y)
If GdViewer1.GetStat() = GdPictureStatus.OK Then
If isVisible Then
MessageBox.Show("The clicked point is within the annotation bounding box.", "GdViewer.IsAnnotationVisibleAt")
Else
MessageBox.Show("The selected annotation is not visible on that point.", "GdViewer.IsAnnotationVisibleAt")
End If
End If
Else
MessageBox.Show("No annotation is currently selected.", "GdViewer.IsAnnotationVisibleAt")
End If
End Sub
//We assume that the GdViewer1 control has been properly integrated.
void GdViewer1_MouseClick(object sender, MouseEventArgs e)
{
int annotIdx = GdViewer1.GetSelectedAnnotationIdx();
if (annotIdx >= 0)
{
bool isVisible = GdViewer1.IsAnnotationVisibleAt(annotIdx, e.X, e.Y);
if (GdViewer1.GetStat() == GdPictureStatus.OK)
{
if (isVisible)
{
MessageBox.Show("The clicked point is within the annotation bounding box.", "GdViewer.IsAnnotationVisibleAt");
}
else
{
MessageBox.Show("The selected annotation is not visible on that point.", "GdViewer.IsAnnotationVisibleAt");
}
}
}
else
{
MessageBox.Show("No annotation is currently selected.", "GdViewer.IsAnnotationVisibleAt");
}
}