Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
85
what is the actual use of stateeditorbutton in ultratexteditor?
posted

Private Sub UltraTextEditor4_EditorButtonClick(sender As Object, e As EditorButtonEventArgs) Handles UltraTextEditor4.EditorButtonClick
If e.Button.Key = "chk" Then
If UltraTextEditor4.Enabled = False Then
UltraTextEditor4.Enabled = True
Else
UltraTextEditor4.Enabled = False
End If
End If
End Sub

Once i click the check box , the whole ultratexteditor becomes disabled.

I am little confused.