Package apple.uikit.protocol
Interface UITextDropRequest
-
public interface UITextDropRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UITextPositiondropPosition()The text position that the drag is over.UIDropSessiondropSession()The current drop session.booleanisSameView()Returns whether the drop is a local drop (that is, the drag and drop are in the same text control).UITextDropProposalsuggestedProposal()The suggested proposal by the text control.
-
-
-
Method Detail
-
dropPosition
UITextPosition dropPosition()
The text position that the drag is over.
-
dropSession
UIDropSession dropSession()
The current drop session. Use this to get the location of the session in the view, for example.
-
isSameView
boolean isSameView()
Returns whether the drop is a local drop (that is, the drag and drop are in the same text control).
-
suggestedProposal
UITextDropProposal suggestedProposal()
The suggested proposal by the text control.
-
-