The property CrossHair controls the form and layout of the crosshair and provides the following sub-properties:
| PosX: double; |
Position on x-axis. |
| PosY: double; |
Position on y-axis. |
| Color: TColor; |
Color of the crosshair. |
| Mode: TCrossHMode; |
Defines the layout of the crosshair (chOff... crosshair is switched off, chHoriz... horizontal linechVert... vertical line, chBoth... full crosshair) |
| LineType: TPenStyle; |
Pen style of the crosshair. LineType may assume one of the following values: psSolid (solid line), psDot (dotted line), psDash (dashed line), psDashDot (dash-dot combinations), psDashDotDot (series of dash-dot-dot combinations). Note that the LineType will be effective only if LineWid is set to 1 |
| LineWid: integer; |
Line width of the crosshair. Note that lines broader than 1 will always be drawn as solid line, even if LineType is set to some other value. |
| OnChange: TNotifyEvent; |
Event triggered when any parameter of the crosshair is changed. |
| Hint: |
Please note that the crosshair can be dragged interactively if the property MouseAction is set to maDragCrossH. |
|