示例#1
0
 def Write(self, txt, pos=-1):
     if pos == -1:
         pos = self.GetCurrentPos()
     CScite.pane_Insert(self.nPane, pos, txt)
     self.GotoPos(pos + len(txt))
示例#2
0
 def InsertText(self, txt, pos):
     return CScite.pane_Insert(self.nPane, pos, txt)
示例#3
0
	def InsertText(self, txt, pos): return CScite.pane_Insert(self.nPane,pos, txt)
	def Remove(self, npos1, npos2): return CScite.pane_Remove(self.nPane, npos1, npos2)