Changes between Initial Version and Version 1 of PyGTK


Ignore:
Timestamp:
06/16/06 08:38:46 (18 years ago)
Author:
atzm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PyGTK

    v1 v1  
     1= PyGTK = 
     2適当メモ.主に日記からの転載. 
     3 
     4== TextView == 
     5{{{ 
     6#!python 
     7textField  = gtk.TextView() 
     8textBuffer = textField.get_buffer() 
     9 
     10[startIter, endIter] = textBuffer.get_bounds() 
     11# [最初の位置, 最後の位置] 
     12 
     13print textBuffer.get_text(startIter, endIter) 
     14}}}