AdvRichEditorFormatToolBar Default Font

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

The TAdvRichEditorFormatToolBar font selector should be set to the connected TAdvRichEditor default font. So, what you set to AdvRichEditor.Font should be displayed in the font selector (of course, till you would change selection to another part of text in the TAdvRichEditor that has a different font)