Version

SelectionDropping Event

Raised when a drag is about to complete and the data is about to be dropped.
Syntax
'Declaration
 
Public Event SelectionDropping As EventHandler(Of SelectionDroppingEventArgs)
public event EventHandler<SelectionDroppingEventArgs> SelectionDropping
Event Data

The event handler receives an argument of type SelectionDroppingEventArgs containing data related to this event. The following SelectionDroppingEventArgs properties provide information specific to this event.

PropertyDescription
Cancel Returns/sets whether the action that triggered the event should be canceled.
DataObject Returns the Infragistics.Controls.Editors.Primitives.SyntaxEditorDataObject that contains the data which is being dropped.
DocumentView Returns the EditorDocumentView into which data is being dropped.
DropPoint Returns the Infragistics.Documents.SnapshotPoint that identifies the location in the Infragistics.Documents.TextDocument where the data is being inserted.
IsDragSourceExternal Returns true if the source of the drag operation is external, false if the source of the drag operation is the XamSyntaxEditor.
IsOperationMove Returns true if the data is being moved, false if the data is being copied (only has meaning if IsDragSourceExternal is false).
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also