Defines the options for where and how the arrow head (the triangle portion) of an arrow should be drawn.
Namespace: RSGraphics
Delphi
|
type
TArrowOption = (
aoArrowAtStart,
aoArrowAtEnd,
aoFillHead,
aoClosedHead,
aoDrawCaption);
|
|
Name
|
Description
|
|
aoArrowAtEnd
|
When an arrow has a direction (e.g., a beginning and an end), this option directs that the arrow head should be drawn at the end of the line.
|
|
aoArrowAtStart
|
When an arrow has a direction (e.g., a beginning and an end), this option directs that the arrow head should be drawn at the start of the line.
|
|
aoClosedHead
|
This option controls whether the arrow head should be drawn closed, e.g., should a line be draw across the back of the arrow head to make a closed shape.
|
|
aoDrawCaption
|
This options controls whether the arrow should have a caption drawn next to it. This option is not used by the DrawArrow function.
|
|
aoFillHead
|
This option controls whether the arrow head should be drawn as an outline or filled in.
|
Top
|