Hi all,
I am currently using the RadMarkupDialog to enable HTML markup on a column in a RadGridView.
I would like to enable spell check on the entered text somehow but cannot seem to see how to do this.
The code I am using to display the dialog and set the text is
Dim dialog As New RadMarkupDialog()
dialog.DefaultFont = RadGridView1.Font
dialog.Editor.RibbonBar.CommandTabs(1).Enabled = False
dialog.Editor.HyperlinkButton.Enabled = False
dialog.Value = RadGridView1.CurrentCell.Text
Dim result As DialogResult = dialog.ShowDialog()
If result = DialogResult.OK Then
Me.RadGridView1.CurrentCell.Value = dialog.Value
Else
End If
Any ideas on how to do this?
I am currently using the RadMarkupDialog to enable HTML markup on a column in a RadGridView.
I would like to enable spell check on the entered text somehow but cannot seem to see how to do this.
The code I am using to display the dialog and set the text is
Dim dialog As New RadMarkupDialog()
dialog.DefaultFont = RadGridView1.Font
dialog.Editor.RibbonBar.CommandTabs(1).Enabled = False
dialog.Editor.HyperlinkButton.Enabled = False
dialog.Value = RadGridView1.CurrentCell.Text
Dim result As DialogResult = dialog.ShowDialog()
If result = DialogResult.OK Then
Me.RadGridView1.CurrentCell.Value = dialog.Value
Else
End If
Any ideas on how to do this?