Rich Text Editor for text columns
For a list of all members of this type, see HtmlEditor Members.
System.Object
Axezz.WebControls.HtmlEditor
Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.
Note that the editor is supplied as open source and resides in the subdirectory htmledit of the Sample application. To use it, copy this folder to your application and initialize it as shown in the example below.
Note that you might need to set the EditorHtmlPath property!
Example usage
[Visual Basic]
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
AxpDataGrid1.ConnectionString = ConfigurationSettings.AppSettings("ConnectionString")
Dim edit1 As New Axezz.WebControls.EditFieldItem
With edit1
.ColumnName = "Notes"
Dim editor As Axezz.WebControls.HtmlEditor = .EnableRichTextEditor
editor.Height = "300"
editor.Width = "600"
End With
AxpDataGrid1.SetEditField(edit1)
End Sub
Namespace: Axezz.WebControls
Assembly: AxpDBNet (in AxpDBNet.dll)
HtmlEditor Members | Axezz.WebControls Namespace