KaxEditorSymbols Property |
Gets the collection containing the symbols to put in the Symbols dropdown.
Namespace: Kettic.AspNet.ControlsAssembly: 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; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property Symbols As EditorSymbolCollection
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
property EditorSymbolCollection^ Symbols {
EditorSymbolCollection^ get ();
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
member Symbols : EditorSymbolCollection with get
Property Value
Type:
EditorSymbolCollection
A SymbolCollection containing the symbols to put in the Symbols dropdown. Default
is an
empty SymbolCollection.
RemarksThe 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));
}
}
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
For i As Integer = 65 To 90
KaxEditor1.Symbols.Add(Convert.ToChar(i))
Next
End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also