Gets the collection containing the symbols to put in the Symbols dropdown.
Namespace: Telerik.WebControls
Assembly: RadEditor (in RadEditor.dll)
Syntax
Return Value
A SymbolCollection containing the symbols to put in the Symbols dropdown. Default
is an
empty SymbolCollection.
Example
This example demonstrates how to put only the english alphabet symbols to the
Symbols dropdown.
| Visual Basic | Copy Code |
|---|
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
For i As Integer = 65 To 90
RadEditor1.Symbols.Add(Convert.ToChar(i))
Next
End Sub
|
| C# | Copy Code |
|---|
private void Page_Load(object
sender, EventArgs e)
{
for (int i=65; i<=90;
i++)
{
RadEditor1.Symbols.Add(Convert.ToChar(i));
}
}
|
Remarks
Requirements
Platforms: Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also