Class DragDropState
Provides a context for a file dialog drag-drop operation.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.FileDialogs.DragDrop
Assembly: Telerik.WinControls.UI.dll
Syntax
public class DragDropState
Constructors
DragDropState()
Declaration
public DragDropState()
Properties
AreInTheSameDrive
Gets a value indicating whether the dragged files/folders are from the same drive as the drop folder. Returns true if theDropFolder is null.
Declaration
public bool AreInTheSameDrive { get; }
Property Value
System.Boolean
|
DraggedFiles
Gets the paths of the files and/or folders that are being dragged.
Declaration
public IEnumerable<string> DraggedFiles { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|
DropFolder
Gets the folder where it is being dropped.
Declaration
public string DropFolder { get; }
Property Value
System.String
|
IsAltDown
Gets or sets the state of the Alt key in the moment when the DragDropState was created.
Declaration
public bool IsAltDown { get; protected set; }
Property Value
System.Boolean
|
IsControlDown
Gets or sets the state of the Control key in the moment when the DragDropState was created.
Declaration
public bool IsControlDown { get; protected set; }
Property Value
System.Boolean
|
IsShiftDown
Gets or sets the state of the Shift key in the moment when the DragDropState was created.
Declaration
public bool IsShiftDown { get; protected set; }
Property Value
System.Boolean
|