Getting started with TMS FNC Blox ToolBar
Prerequisites
- TMS FNC Core installed and the runtime package added to the project.
- TMS FNC Blox installed.
- A
TTMSFNCBloxControlalready placed on the form.
Add a toolbar
- Drop one or more toolbar components from the TMS FNC Blox palette page onto the form:
TTMSFNCBloxEditToolBar— clipboard, undo/redo, and edit commands.TTMSFNCBloxFormatBlockToolBar— block fill, stroke, and shadow appearance.TTMSFNCBloxFormatBlockTextToolBar— text font and alignment.TTMSFNCBloxSelectToolBar— selection mode controls.
- Align each toolbar at the top of the form or inside a panel.
- Assign the
BloxControlproperty of each toolbar to yourTTMSFNCBloxControlinstance.
Link at runtime
{ Inside your form's OnCreate event: }
begin
BloxEditToolBar1.BloxControl := BloxControl1;
BloxSelectToolBar1.BloxControl := BloxControl1;
end;
Once linked, the toolbar controls reflect the current selection state of the diagram and issue commands directly to the control.
Next steps
- Guides — available sub-toolbars and customization.
- Product overview — other components in TMS FNC Blox.