Hello,
I am not sure I understand the problem, but do you need to modify the the FontName dropdown with your custom settings? Then maybe the following code will be useful
protected void Page_PreRender(object sender, EventArgs e)
{
// Find the FontSize drop down item in the Toolbar.Items collection.
ToolbarDropDown dropDown = (ToolbarDropDown) this.WebHtmlEditor1.Toolbar.Items.GetByType(ToolbarItemType.FontName);
// Clear items coming from the FontSizeList property.
dropDown.Items.Clear();
// Add items that preview the font size their selection sets.
dropDown.Items.Add(new ToolbarDropDownItem("Font Name 1", "1"));
dropDown.Items.Add(new ToolbarDropDownItem("font Name 2", "2"));
dropDown.Items.Add(new ToolbarDropDownItem("Font Name 3", "3"));
}
If I am missing something, could you please send a little bit more information on what you need to achieve, so we can hopefully help further.