ListViewBase.IsDragSource Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a value that indicates whether the list view is both the drag source and drop target in a drag-and-drop operation.
public:
virtual bool IsDragSource() = IsDragSource;
bool IsDragSource();
public bool IsDragSource();
function isDragSource()
Public Function IsDragSource () As Boolean
Returns
bool
true if the list view is both the drag source and drop target; otherwise, false.
Windows requirements
Device family |
Windows 10 Anniversary Edition (introduced in 10.0.14393.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v3.0)
|
Remarks
For more info, see Drag and drop.
Version compatibility
The IsDragSource method is not available prior to Windows 10, version 1607. If your app’s 'minimum platform version' setting in Microsoft Visual Studio is less than the 'introduced version' shown in the Requirements block later in this page, you must design and test your app to account for this. For more info, see Version adaptive code.
To avoid exceptions when your app runs on previous versions of Windows 10, do not call this method without first performing a runtime check. This example shows how to use the ApiInformation class to check for the presence of this method before you use it.
if (ApiInformation.IsMethodPresent("Windows.UI.Xaml.Controls.ListViewBase", "IsDragSource"))
{
bool isDragSource = listView1.IsDragSource();
}