ImageEn, unit iexRulers

TIEViewRulerParams.GripKindDefault

TIEViewRulerParams.GripKindDefault

Declaration

property GripKindDefault: TGripKind;

Description

Specifies the default style for all grips.
This style will be assigned to any grips for which you have not set a custom style using HorzGripsKind or VertGripsKind.

Grips with default style of gkTriangle:


Note:
◼The size of the grip is specified by GripWidth and GripHeight.
◼This property does not affect the grip for the current cursor position, use CursorGripKind instead

Default: gkTriangle

Example

// Set default style of grips to gkTriangle, but gkArrow2 to grips > 10
ImageEnView1.RulerParams.GripKindDefault := gkTriangle;
for i := 10 to ImageEnView1.RulerParams.HorzGripsCount - 1 do
  ImageEnView1.RulerParams.HorzGripsKind[ i ] := gkArrow2;

See Also

◼HorzGripsKind
◼VertGripsKind
◼CursorGripKind
◼GripPenColor
◼GripColorDefault
◼GripWidth
◼GripHeight