ImageEn, unit imageenview |
|
TImageEnView.SetSelectionGripStyle
Declaration
procedure SetSelectionGripStyle(GripColor1: TColor = clBlack; GripColor2: TColor = clWhite; GripBrushStyle: TBrushStyle = bsSolid; GripSize: integer = 5; ExtendedGrips: boolean = true; Shape: TIEGripShape = iegsCircle); overload;
procedure SetSelectionGripStyle(GripStyle: TIEGripStyle); overload;
Description
Specifies the appearance of selection grips.
Parameter | Description |
GripColor1 | Grip border color (Default: clBlack) |
GripColor2 | Grip brush color (Default: $9DF5FF - Pale Yellow) |
GripBrushStyle | Grip Brush style (Default: bsSolid) |
GripSize | Radius of the grip in pixels (Default: 5) |
ExtendedGrips | If true, side grips are drawn (instead of just corner grips) (Default: true) |
Shape | Shape of grip (Default: iegsCircle) |
Use
GetSelectionGripStyle to retrieve the current values.
Example
ImageEnView1.SetSelectionGripStyle(clWhite, clWhite, bsSolid, 5, true, iegsCircle);
See Also
-
SelColor1-
SelColor2