TMSFNCRichEditorFormatToolBar

I drop this component on a fmx form and change the Options in order to remove some tool buttons.  Than I run the application all buttons will be displayed and the settings from the Options will be ignored.


Is this an issue or do I have forgot to setup anything?

Thank you 
Christoph

I test on Delphi Tokyo 10.2.3 with the newest version of TMS FNX UIPack 2.1.3.1 (about of the component shows V1.0.0.1)


Also setting the options at runtime does not work properly. If I hide the entire toolbar, change the options and show it again I can see that some tool buttons will be hidden but not according to my settings in the property Options. 

Hi, we'll investigate this here. Can you, for now, programmatically set the options property?


Yes, this code is working:


procedure TForm1.FormShow(Sender: TObject);
begin
  TMSFNCRichEditorFormatToolBar1.FontNamePicker.visible := false;
  TMSFNCRichEditorFormatToolBar1.FontSizePicker.visible := false;
end;

Hint: Set TMSFNCRichEditorFormatToolBar1.FontNamePicker.hidden to true is not working and this is probably the reason why TTMSFNCRichEditorFormatToolBar.UpdateOptions is not working anymore. Right?

It's most likely a designtime configuration issue with default values, but that's yet to be determined. Thanks for your feedback.

Just one hint: In TTMSFNCRichEditorFormatToolBar.UpdateOptions the handling of some options are missing:

    BulletsPicker 
    IndentButton
    UnindentButton

And this issue concerns TMSFNCRichEditorEditToolBar too!