Class
PreviewDragDropEventArgs

Definition

Namespace:Telerik.WinForms.Controls.SyntaxEditor.UI

Assembly:Telerik.WinControls.SyntaxEditor.dll

Syntax:

cs-api-definition
public class PreviewDragDropEventArgs : EventArgs

Inheritance: objectEventArgsPreviewDragDropEventArgs

Inherited Members EventArgs.Empty

Constructors

PreviewDragDropEventArgs(CaretPosition, CaretPosition)

Declaration

cs-api-definition
public PreviewDragDropEventArgs(CaretPosition startPosition, CaretPosition dropPosition)

Parameters

startPosition

CaretPosition

dropPosition

CaretPosition

Properties

DropPosition

The caret position at which the selection will be dropped.

Declaration

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

Property Value

CaretPosition

Handled

Determines whether the event is handled. If the property is set to true, the selection will not be moved to the dragged position.

Declaration

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

Property Value

bool

StartPostion

The caret position at which the drag operation has been started. The start position is always within the current selection.

Declaration

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

Property Value

CaretPosition