Search
FlowChart.FeedbackOnDragOver Property
See Also
 



Gets or sets a value indicating whether a feedback frame should be painted around boxes while drag-and-drop operation is in progress.

 Syntax

VB6  Copy Code

Public Property Get FeedbackOnDragOver() As Boolean
Public Property Let FeedbackOnDragOver( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_FeedbackOnDragOver ()
void put_FeedbackOnDragOver (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

Specifies if feedback frame is drawn around a box while an OLE drag-and-drop operation is performed and the box will accept the dragged data. Container boxes will also give feedback when an object is dragged over them, if this property is set to true. The feedback frame is painted with the color defined via FeedbackColor, using a pen defined via FeedbackPenStyle and FeedbackPenWidth properties.

 See Also