In Files

  • tk/lib/tkextlib/tcllib/ntext.rb

Class/Module Index [+]

Quicksearch

Tk::Tcllib::Ntext

Public Class Methods

classicAnchor() click to toggle source

accessor

 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 64
def classicAnchor
  @classicAnchor.bool
end
            
classicAnchor=(mode) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 67
def classicAnchor=(mode)
  @classicAnchor.bool = mode
end
            
classicExtras() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 71
def classicExtras
  @classicExtras.bool
end
            
classicExtras=(mode) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 74
def classicExtras=(mode)
  @classicExtras.bool = mode
end
            
classicMouseSelect() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 78
def classicMouseSelect
  @classicMouseSelect.bool
end
            
classicMouseSelect=(mode) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 81
def classicMouseSelect=(mode)
  @classicMouseSelect.bool = mode
end
            
classicWordBreak() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 85
def classicWordBreak
  @classicWordBreak.bool
end
            
classicWordBreak=(mode) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 88
def classicWordBreak=(mode)
  @classicWordBreak.bool = mode
end
            
classicWrap() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 92
def classicWrap
  @classicWrap.bool
end
            
classicWrap=(mode) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 95
def classicWrap=(mode)
  @classicWrap.bool = mode
end
            
createMatchPatterns(*args) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 51
def createMatchPatterns(*args)
  TK.tk_call('::next::createMatchPatterns', *args)
  self
end
            
initializeMatchPatterns() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 46
def initializeMatchPatterns
  TK.tk_call('::next::initializeMatchPatterns')
  self
end
            
newWrapRegexp() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 106
def newWrapRegexp
  @newWrapRegexp.value
end
            
newWrapRegexp=(val) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 109
def newWrapRegexp=(val)
  @newWrapRegexp.value = val
end
            
overwrite() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 99
def overwrite
  @overwrite.bool
end
            
overwrite=(mode) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 102
def overwrite=(mode)
  @classic.bool = mode
end
            
tcl_match_endOfWord() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 127
def tcl_match_endOfWord
  @tcl_match_endOfWord.value
end
            
tcl_match_endOfWord=(val) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 130
def tcl_match_endOfWord=(val)
  @tcl_match_endOfWord.value = val
end
            
tcl_match_startOfNextWord() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 134
def tcl_match_startOfNextWord
  @tcl_match_startOfNextWord.value
end
            
tcl_match_startOfNextWord=(val) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 137
def tcl_match_startOfNextWord=(val)
  @tcl_match_startOfNextWord.value = val
end
            
tcl_match_startOfPreviousWord() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 141
def tcl_match_startOfPreviousWord
  @tcl_match_startOfPreviousWord.value
end
            
tcl_match_startOfPreviousWord=(val) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 144
def tcl_match_startOfPreviousWord=(val)
  @tcl_match_startOfPreviousWord.value = val
end
            
tcl_match_wordBreakAfter() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 113
def tcl_match_wordBreakAfter
  @tcl_match_wordBreakAfter.value
end
            
tcl_match_wordBreakAfter=(val) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 116
def tcl_match_wordBreakAfter=(val)
  @tcl_match_wordBreakAfter.value = val
end
            
tcl_match_wordBreakBefore() click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 120
def tcl_match_wordBreakBefore
  @tcl_match_wordBreakBefore.value
end
            
tcl_match_wordBreakBefore=(val) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 123
def tcl_match_wordBreakBefore=(val)
  @tcl_match_wordBreakBefore.value = val
end
            
wrapIndent(txt, *args) click to toggle source
 
               # File tk/lib/tkextlib/tcllib/ntext.rb, line 42
def wrapIndent(txt, *args)
  TK.tk_call('::next::wrapIndent', txt, *args)
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.