ComponentOne Editor for ASP.NET Web Forms
Task-Based Help / Using the Simple Editor Toolbar
In This Topic
    Using the Simple Editor Toolbar
    In This Topic

    The C1Editor control supports a simplified version of its editing toolbar, which provides these buttons: Bold, Italic, Link, Block Quote, Strikethrough, Insert Date Time, Image Browser, Numbered List, Bulleted List, and Insert Code.

    C1Editor

    Simply set the mode property to "Simple" to take advantage of this feature.

    To write code in Source View


    <cc1:C1Editor ID="C1Editor1" runat="server" Mode="Simple" />

    Complete the steps given below:

    1. Create an ASP.NET Web application.
    2. Add a C1Editor control to the main content of your page.
    3. Select View | Properties Window in the Visual Studio menu.
    4. Make sure the C1Editor control is selected and set the Mode property to Simple. Your markup should look similar to this:

      To write code in Source View

      <cc1:C1Editor ID="C1Editor1" runat="server" Mode="Simple"/>
    5. Press F5 to run the application. Enter text and format using the simple toolbar.

      C1Editor

    See Also