TIEGlobalSettings.ImageSelectionToolbar
Declaration
property ImageSelectionToolbar: TImageEnViewToolbarParams;
Description
Specifies properties of the Image Selection toolbar.
The default buttons for this toolbar allow you to perform actions on the image selection, such as cropping, clipboard and color effects.
The Image Selection toolbar appears over a
TImageEnView if:
◼AutoToolbars includes ievSelection
◼The image is
selected◼A layer is not
selectedThese properties are also used as the default for the
TImageEnViewToolbar if
ButtonMode is ievSelection.
| Demos\Other\ImageEnViewToolbar\IEToolbar.dpr |
// When the image is selected, show clipboard buttons beneath the selection
IEGlobalSettings().ImageSelectionToolbar.Buttons := [ ivbImageClipboard ];
IEGlobalSettings().ImageSelectionToolbar.Position := iepBelowSelection;
ImageEnView1.AutoToolbars := [ ievSelection ];
// Show hover toolbar above control
IEGlobalSettings().ImageSelectionToolbar.Position := iepAbove;
See Also
◼AutoToolbars◼ImageEditingToolbar◼ImageViewingToolbar◼PdfEditingToolbar◼PdfViewingToolbar◼RichEditorToolbar◼LayerEditingToolbar◼LayerSelectionToolbar◼ToolbarsAllowExtraControls