从TextCtrl中间删除行



我需要从textctrl中间从第Y行开始删除X行

有什么简单的方法吗?我看不到一个:似乎我必须以某种方式搜索TextCtrl计数换行符的内容以找到Y…

的位置。
    if self._log.GetNumberOfLines() > MAX_LINES:
        if self._log.GetLineText(DELETION_POINT) != DELETION_LINE:
            start = self._log.XYToPosition(0, DELETION_POINT)
            self._log.SetInsertionPoint(start)
            self._log.WriteText(DELETION_LINE)
        while (self._log.GetNumberOfLines() > MAX_LINES):
            start = self._log.XYToPosition(0, DELETION_POINT+1)
            len = self._log.GetLineLength(DELETION_POINT+1)
            self._log.Remove(start, start+len+1)

相关内容

  • 没有找到相关文章

最新更新