The Artima Developer Community
Sponsored Link

Java Answers Forum
MouseDrag event

1 reply on 1 page. Most recent reply: Sep 8, 2003 4:08 AM by mausam

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
sabab

Posts: 34
Nickname: sabab
Registered: Aug, 2003

MouseDrag event Posted: Sep 8, 2003 2:47 AM
Reply to this message Reply
Advertisement
How can i avoid mouse drag inside a JTextPane.
i wrote the following code for mousedrag event of corresponding JtextPane, but still i am able to drag the mouse. (ultimately i want to avoid selection of text inside the Jtextpane through mousedrag)

public void mouseDragged(MouseEvent me)
{
me.consume();
}

pls suggest


mausam

Posts: 243
Nickname: mausam
Registered: Sep, 2003

Re: MouseDrag event Posted: Sep 8, 2003 4:08 AM
Reply to this message Reply
how abt using

dragGestureRecognized(DragGestureEvent event) method

Flat View: This topic has 1 reply on 1 page
Topic: Apache-Tomcat Previous Topic   Next Topic Topic: How to remove the copyright link from webpage?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use