Hi,
sorry for my bad english.....
Im building a RadEditor in my codebehind but i don't know the names of some tools i need to add... do you have any list of them???
whith some tool i can use the tootip name but, other tools have two words tooltip and when i try to add them i get the message "The command [name i use for the tool] is not implemented yet".
for example i'm trying to add an horizontal rule and i cant'.
some of my code:
| Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load |
| Dim main As New EditorToolGroup() |
| RadEditor1.Tools.Add(main) |
| main.Tools.Add(New EditorTool("SelectAll", "CTRL+A")) |
| main.Tools.Add(New EditorTool("Cut", "CTRL+X")) |
| main.Tools.Add(New EditorTool("Copy", "CTRL+C")) |
| main.Tools.Add(New EditorTool("Paste", "CTRL+V")) |
| main.Tools.Add(New EditorTool("Undo", "CTRL+Z")) |
| main.Tools.Add(New EditorTool("Redo", "CTRL+Y")) |
| main.Tools.Add(New EditorTool("HorizontalRule")) 'I GET ERROR IN THIS LINE |
| End Sub |
Thanks for helping me!!!!
