Class PreviewDragStartEventArgs
Inheritance
System.Object
System.EventArgs
PreviewDragStartEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinForms.Controls.SyntaxEditor.UI
Assembly: Telerik.WinControls.SyntaxEditor.dll
Syntax
public class PreviewDragStartEventArgs : EventArgs
Constructors
PreviewDragStartEventArgs(CaretPosition, Boolean)
Declaration
public PreviewDragStartEventArgs(CaretPosition startPosition, bool canStart = true)
Parameters
CaretPosition
startPosition
|
System.Boolean
canStart
|
Properties
CanStart
Determines whether a drag operation may start.
Declaration
public bool CanStart { get; set; }
Property Value
System.Boolean
|
StartPostion
The start caret position from which the drag operation will start. The start position is always within the current selection.
Declaration
public CaretPosition StartPostion { get; }
Property Value
CaretPosition
|