DragEventArgsSetDropDescription Method |
Sets the drop description when dragging overtop your control to specify additional context of what will be done.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public virtual void SetDropDescription(
string format,
string inner = null
)
Public Overridable Sub SetDropDescription (
format As String,
Optional inner As String = Nothing
)
abstract SetDropDescription :
format : string *
?inner : string
(* Defaults:
let _inner = defaultArg inner null
*)
-> unit
override SetDropDescription :
format : string *
?inner : string
(* Defaults:
let _inner = defaultArg inner null
*)
-> unit
Parameters
- format
- Type: SystemString
Format string, include {0} in the string for the inner parameter - inner (Optional)
- Type: SystemString
Optional inner parameter to be highlighted from the rest of the string.
Remarks
Note that some platforms may not support this, as it is only a hint for drag/drop operations.
Use
SupportsDropDescription to determine if the platform supports it.
Currently works only in Wpf, and WinForms.
See Also