ImageEn, unit iexRichEdit

TIERichEdit.AutoToolbar

TIERichEdit.AutoToolbar


Declaration

property AutoToolbar: Boolean;


Description

When enabled, a toolbar hovers over the control providing style and editing functions.
The toolbar position, style and buttons can be configured with RichEditorToolbar.



Default: False

Note:
 To embed the toolbar rather than have it hover, use a TIERichEditToolbar
 The toolbar is only displayed when the TIERichEdit is the active control
 Delphi 2006 and older: Hover toolbars should only be used on the main form. On secondary forms the toolbar may stay in front of other applications


Example

// Show a hover toolbar when editing text
IEGlobalSettings().RichEditorToolbar.Position := iepAbove;
IERichEdit1.AutoToolbar  := True;