'We assume that the GdViewer1 control has been properly integrated.
Sub buttonEnableEditing_Click(ByVal sender As Object, ByVal e As EventArgs)
GdViewer1.SetAnnotationEditorMode(True)
End Sub
Sub buttonDisableEditing_Click(ByVal sender As Object, ByVal e As EventArgs)
GdViewer1.SetAnnotationEditorMode(False)
End Sub
//We assume that the GdViewer1 control has been properly integrated.
void buttonEnableEditing_Click(object sender, EventArgs e)
{
GdViewer1.SetAnnotationEditorMode(true);
}
void buttonDisableEditing_Click(object sender, EventArgs e)
{
GdViewer1.SetAnnotationEditorMode(false);
}