CuteEditor for .NET 6.0 Class Library

Editor.PlainText Property

Retrieves the CuteEditor HTML content in plain text format.

[Visual Basic]
Public ReadOnly Property PlainText As String
[C#]
public string PlainText {get;}

Remarks

This property is read-only. If you want to store the document text in a database which is searchable, you can use the output of this property to create an HTML-free copy for indexing.

Example

 
    string plainText = editor1.PlainText;

See Also

Editor Class | CuteEditor Namespace