TIEViewRulerParams.GripHeight
Declaration
property GripHeight: Integer;
Description
Specifies the maximum height of the grip. Set to zero to hide the grip selection area.
Triangular grips showing at default size:
Default: 15
Note: The value may be automatically adjusted depending on your
font size and the available
height/
width.
Examples
// Create narrow rulers
ImageEnView1.RulerParams.Font.Size := 6;
ImageEnView1.RulerParams.HorzHeight := 20;
ImageEnView1.RulerParams.VertWidth := 20;
ImageEnView1.RulerParams.GripHeight := 10;
// Hide the grip region
ImageEnView1.RulerParams.GripHeight := 0;
// Display rulers with full size cross hairs
ImageEnView1.ZoneCursor := iecsFullCrossHairs;
ImageEnView1.ShowRulers := [ rdHorizontal, rdVertical ];
ImageEnView1.RulerParams.GripHeight := 0; // Hide grip region
ImageEnView1.Update();
See Also
◼GripWidth
◼GripKindDefault