Method: TkFont#kanji_actual
- Defined in:
- lib/tk/font.rb
#kanji_actual(option = nil) ⇒ Object
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 |
# File 'lib/tk/font.rb', line 1228 def kanji_actual(option=nil) #if JAPANIZED_TK if @kanjifont == nil actual_core(@compoundfont, nil, option) # use @compoundfont elsif @kanjifont != "" actual_core(@kanjifont, nil, option) else actual_core_tk4x(nil, nil, option) end end |