Definition
Namespace:Telerik.WinForms.Controls.SyntaxEditor.UI
Assembly:Telerik.WinControls.SyntaxEditor.dll
Syntax:
C#
public class PreviewDragDropEventArgs : EventArgs
Inheritance: objectEventArgsPreviewDragDropEventArgs
Inherited Members
Constructors
C#
public PreviewDragDropEventArgs(CaretPosition startPosition, CaretPosition dropPosition)
Properties
The caret position at which the selection will be dropped.
C#
public CaretPosition DropPosition { get; }
Determines whether the event is handled. If the property is set to true, the selection will not be moved to the dragged position.
C#
public bool Handled { get; set; }
The caret position at which the drag operation has been started. The start position is always within the current selection.
C#
public CaretPosition StartPostion { get; }