Class PreviewDragOverEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Controls.SyntaxEditor.UI
Assembly: Telerik.WinControls.SyntaxEditor.dll
Syntax
public class PreviewDragOverEventArgs : EventArgs
Constructors
PreviewDragOverEventArgs(CaretPosition, CaretPosition, Boolean)
Declaration
public PreviewDragOverEventArgs(CaretPosition startPosition, CaretPosition dropPosition, bool canDrop = true)
Parameters
CaretPosition
startPosition
|
CaretPosition
dropPosition
|
System.Boolean
canDrop
|
Properties
CanDrop
Determines whether whether the selection can be dropped. This property taken into consideration when changing the mouse cursor.
Declaration
public bool CanDrop { get; set; }
Property Value
System.Boolean
|
DropPosition
The caret position at which the selection is being dragged over.
Declaration
public CaretPosition DropPosition { get; }
Property Value
CaretPosition
|
StartPostion
The start caret position at which the drag operation has been start. The start position is always within the current selection.
Declaration
public CaretPosition StartPostion { get; }
Property Value
CaretPosition
|