Clipboard.SetFileDropList Method (System.Windows)

Switch View :
ScriptFree
.NET Framework Class Library
Clipboard.SetFileDropList Method

Stores FileDrop data on the Clipboard. The dropped file list is specified as a string collection.

Namespace:  System.Windows
Assembly:  PresentationCore (in PresentationCore.dll)
Syntax

Visual Basic
Public Shared Sub SetFileDropList ( _
	fileDropList As StringCollection _
)
C#
public static void SetFileDropList(
	StringCollection fileDropList
)
Visual C++
public:
static void SetFileDropList(
	StringCollection^ fileDropList
)
F#
static member SetFileDropList : 
        fileDropList:StringCollection -> unit 

Parameters

fileDropList
Type: System.Collections.Specialized.StringCollection
A string collection that contains the dropped file list to store in the data object.
Exceptions

Exception Condition
ArgumentNullException

fileDropList is null.

ArgumentException

fileDropList contains zero strings, or the full path to file specified in the list cannot be resolved.

Remarks

This method adds data with auto-conversion enabled.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, 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

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference