Class
PreviewDragOverEventArgs

Definition

Namespace:Telerik.WinForms.Controls.SyntaxEditor.UI

Assembly:Telerik.WinControls.SyntaxEditor.dll

Syntax:

cs-api-definition
public class PreviewDragOverEventArgs : EventArgs

Inheritance: objectEventArgsPreviewDragOverEventArgs

Inherited Members EventArgs.Empty

Constructors

PreviewDragOverEventArgs(CaretPosition, CaretPosition, bool)

Declaration

cs-api-definition
public PreviewDragOverEventArgs(CaretPosition startPosition, CaretPosition dropPosition, bool canDrop = true)

Parameters

startPosition

CaretPosition

dropPosition

CaretPosition

canDrop

bool

Properties

CanDrop

Determines whether whether the selection can be dropped. This property taken into consideration when changing the mouse cursor.

Declaration

cs-api-definition
public bool CanDrop { get; set; }

Property Value

bool

DropPosition

The caret position at which the selection is being dragged over.

Declaration

cs-api-definition
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

cs-api-definition
public CaretPosition StartPostion { get; }

Property Value

CaretPosition