Is it possible to change the default font in the AdvRichEditorFormatToolBar?
This is what I've tried, but doesn't seem to work
For i:= 0 to FrameEditor1.AdvRichEditorFormatToolBar1.ControlCount - 1 do
begin
   if (FrameEditor1.AdvRichEditorFormatToolBar1.Controls is TAdvOfficeFontSelector) then
   begin
        (FrameEditor1.AdvRichEditorFormatToolBar1.Controls as TAdvOfficeFontSelector).font.Name := 'Times New Roman';
        (FrameEditor1.AdvRichEditorFormatToolBar1.Controls as TAdvOfficeFontSelector).Text := 'Times New Roman';
end;
end;
Thanks
Jody