Class PreviewDragDropEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Controls.SyntaxEditor.UI
Assembly: Telerik.WinControls.SyntaxEditor.dll
Syntax
public class PreviewDragDropEventArgs : EventArgs
Constructors
PreviewDragDropEventArgs(CaretPosition, CaretPosition)
Declaration
public PreviewDragDropEventArgs(CaretPosition startPosition, CaretPosition dropPosition)
Parameters
CaretPosition
startPosition
|
CaretPosition
dropPosition
|
Properties
DropPosition
The caret position at which the selection will be dropped.
Declaration
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
public bool Handled { get; set; }
Property Value
System.Boolean
|
StartPostion
The caret position at which the drag operation has been started. The start position is always within the current selection.
Declaration
public CaretPosition StartPostion { get; }
Property Value
CaretPosition
|