Method: QDA::GUI::FindableText#get_subject
- Defined in:
- lib/weft/wxgui/controls/textcontrols.rb
#get_subject ⇒ Object
207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/weft/wxgui/controls/textcontrols.rb', line 207 def get_subject() if @f_data.up? subject = get_range( 0, insertion_point ) else subject = get_range( insertion_point, last_position ) end if @f_data.no_matchcase? subject.downcase! end return subject end |