I have built a RadEditor .cs class that i drop onto pages that require the editor tool.
Following is a part of the class where i create a custom button.
How do I add an icon/image to the button within the cs class.
Icon currently default to a question mark.
is the only way to do tihs within CSS.
public class Editor: RadEditor
{
public Editor()
{
EditorToolGroup etg = new EditorToolGroup();
EditorTool
Custom = new EditorTool();
etg.Tools.Add(Custom);
}
}