⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e1015. listening for caret movement events in a jtextcomponent.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
A caret event is fired whenever the caret is moved, either by the user or by setCaretPosition(). Caret events are not fired while the mouse is being dragged. When calling setCaretPosition(), a caret event is fired only if the new position is different from the old position. 
    JTextComponent textComp = new JTextArea();
    textComp.addCaretListener(new CaretListener() {
        public void caretUpdate(CaretEvent e) {
            // dot is the caret position
            int dot = e.getDot();
    
            // mark is the non-caret end of the selection
            int mark = e.getMark();
        }
    });

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -