DragEvent.Action Property
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.
Inspect the action value of this event.
public virtual Android.Views.DragAction Action { [Android.Runtime.Register("getAction", "()I", "GetGetActionHandler")] get; }
[<get: Android.Runtime.Register("getAction", "()I", "GetGetActionHandler")>]
member this.Action : Android.Views.DragAction
Property Value
One of the following action constants, in the order in which they usually occur
during a drag and drop operation:
<ul>
<li>#ACTION_DRAG_STARTED
</li>
<li>#ACTION_DRAG_ENTERED
</li>
<li>#ACTION_DRAG_LOCATION
</li>
<li>#ACTION_DROP
</li>
<li>#ACTION_DRAG_EXITED
</li>
<li>#ACTION_DRAG_ENDED
</li>
</ul>
- Attributes
Remarks
Inspect the action value of this event.
Java documentation for android.view.DragEvent.getAction()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.