CuteEditor for .NET 6.2 Class Library

Editor Class

Cute Editor for ASP.NET is a powerful, professional ASP.NET Server control that enables .Net developers to embed a word processor, similar to Microsoft Word into a web page. This Web-based WYSIWYG Content Editing tool empowers business users with an intuitive, easy-to-use interface for creating and publishing web content. This documentation should provide everything you need to customize the CuteEditor control for your particular application.

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

System.Object
   System.Web.UI.Control
      System.Web.UI.WebControls.WebControl
         CuteEditor.Editor

[Visual Basic]
Public Class Editor
    Inherits WebControl
    Implements INamingContainer, IPostBackDataHandler
[C#]
public class Editor : WebControl, INamingContainer, IPostBackDataHandler

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

Cute Editor for .NET supports all Internet Explorer versions from 5.5 up on Windows, Firefox 1.0+, Netscape 7.1+, Mozilla 1.3+, Opera 9.x, Safari (1.3+) or any other browser with an equivalent gecko layout engine on any platform where these browsers are available. This includes Macintosh and Linux.

Keep in mind that you don't need a supported browser to see HTML pages generated using Cute Editor for .NET, you just need a supported browser to edit with Cute Editor for .NET. If you attempt to use Cute Editor for .NET using a browser that is not supported Cute Editor for .NET will display a regular textarea. You will still be able to edit the document, but only in HTML code view.

Example

default setting:

 <%@ Register TagPrefix="CE" Assembly="CuteEditor" Namespace="CuteEditor" %>
<html> <head>
</head>
<body>
<form runat="server">
<CE:Editor id="Editor1" ruant="server" />
</form>
</body>
</html>
programmatically disable the Save, Bold, Italic buttons:
<CE:Editor id="Editor1" DisableItemList="Save, Bold, Italic" runat="server"></CE:Editor>

Requirements

Namespace: CuteEditor

Assembly: CuteEditor (in CuteEditor.dll)

See Also

Editor Members | CuteEditor Namespace