TIEEditControls.PreviewEffects
Declaration
property PreviewEffects: TPreviewEffects;
Description
Specifies which
preview effect tabs are shown.
Note:
◼If peAll is included in
PreviewEffects, then all tabs will be shown
◼If only one item is specified for
PreviewEffects then the tabs are hidden
Default: [peAll]
// Show image editing effects and default to rotation
IEEditControls1.PreviewEffects := ppeEditingFunctions;
IEEditControls1.ActiveTab := peRotate;
// Show only the rotation function (no tabs)
IEEditControls1.PreviewEffects := [peRotate];
// Show all available editing functions
IEEditControls1.PreviewEffects := [peAll];
// Show color adjustment effects
IEEditControls1.PreviewEffects := ppeColorAdjustments;
// Show special effects effects
IEEditControls1.PreviewEffects := ppeSpecialEffects;
See Also
◼ppeColorAdjustments◼ppeEditingFunctions◼ppeSpecialEffects◼PreviewEffectToStr