Click or drag to resize
KaxEditorSymbols Property
Gets the collection containing the symbols to put in the Symbols dropdown.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public EditorSymbolCollection Symbols { get; }

Property Value

Type: EditorSymbolCollection
A SymbolCollection containing the symbols to put in the Symbols dropdown. Default is an empty SymbolCollection.
Remarks

The contents of this collection will override the default symbols available in the Symbols dropdown.

Note: multiple symbols can be added at once by using the SymbolCollection.Add() method.

Examples
This example demonstrates how to put only the english alphabet symbols to the Symbols dropdown.
private void Page_Load(object sender, EventArgs e)
{
    for (int i=65; i<=90; i++)
    {
        KaxEditor1.Symbols.Add(Convert.ToChar(i));
    }
}
See Also