(self, select = False)
| 277 | if select: return self.text_block.select_end_character |
| 278 | return self.text_block.current_character |
| 279 | def get_line_index(self, select = False): |
| 280 | return self.text_block.current_line_index |
| 281 | |
| 282 | def move_cursor_to_line_begin(self, select = False): |
| 283 | self.move_cursor("LINE_BEGIN", select) |
no outgoing calls
no test coverage detected