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