AxpDataGrid

HtmlEditor Class

Rich Text Editor for text columns

For a list of all members of this type, see HtmlEditor Members.

System.Object
   Axezz.WebControls.HtmlEditor

[Visual Basic]
Public Class HtmlEditor
[C#]
public class HtmlEditor

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

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

Requirements

Namespace: Axezz.WebControls

Assembly: AxpDBNet (in AxpDBNet.dll)

See Also

HtmlEditor Members | Axezz.WebControls Namespace