Gets or sets the data object for drad & drop operations between different applications.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public Object Data { get; set; }
Visual Basic
Public Property Data As Object
	Get
	Set
Visual C++
public:
property Object^ Data {
	Object^ get ();
	void set (Object^ value);
}
F#
member Data : Object with get, set

Property Value

Type: Object
The data to drag.

Remarks

If the drag operation needs to interoperate with applications in another process, data should either be a base managed class (String, Bitmap, or Metafile), or an object that implements ISerializable or IDataObject.

See Also