Back to Devexpress

TdxFcHitTest Type

vcl-dxflchrt-dfaf0941.md

latest2.1 KB
Original Source

TdxFcHitTest Type

Enumerates types of visual objects that the flow chart control can display.

Declaration

delphi
TdxFcHitTest = set of (htNowhere, htByObject, htOnObject, htOnConnection, htOnConLabel, htOnArrowSrc, htOnArrowDst, htOnSelPoint, htOnRotateMark, htOnParameter);

Referenced Class

Type
dxflchrt.TEnum~htNowhere.htOnParameter

Remarks

The corresponding flag is present if the point whose coordinates are passed as the X and Y parameters, is:

ValueDescription
htNowhereLocated in an empty portion of the control’s area.
htByObjectWithin a chart symbol‘s bounding rectangle.
htOnObjectWithin a chart symbol’s shape. Since the chart symbol’s shape is always within the bounding rectangle, the htByObject flag is also present in the GetHitTestAt function’s result.
htOnConnectionAt a connection‘s area.
htOnConLabelAt a connection’s label.
htOnArrowSrcWithin the area occupied by a connection’s source arrow. Since the connection’s source arrow is created by its connection, the htOnConnection flag is also present in the GetHitTestAt function’s result.
htOnArrowDstWithin the area occupied by a connection’s destination arrow. Since the connection’s destination arrow is created by its connection, the htOnConnection flag is also present in the GetHitTestAt function’s result.
htOnSelPointWithin the area occupied by an anchor point of any selected chart symbol or connection.
htOnRotateMarkWithin the rotation mark’s bounding rectangle.

The chart symbol’s HitTest function references the TdxFcHitTestType.

See Also

dxflchrt Unit