ImageEn, unit iexRulers

TIEViewRulerParams.HorzGripsKind

TIEViewRulerParams.HorzGripsKind


Declaration

property HorzGripsKind[g: integer]: TGripKind;


Description

Specifies the style of the grip, g, on the horizontal ruler (triangle, arrow, etc).

Grips with default style of gkTriangle:


Note:
The default style for grips is specified by GripKindDefault. Use HorzGripsKind when you want individual grips with different styles
The style of the grip showing the current cursor position is specified by CursorGripKind
The size of the grip is specified by GripWidth and GripHeight


Examples

// 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

GripKindDefault
VertGripsKind
GripWidth
GripHeight
GripColorDefault
GripPenColor