Method: TkTimer#info

Defined in:
lib/tk/timer.rb

#infoObject



477
478
479
480
481
482
483
484
# File 'lib/tk/timer.rb', line 477

def info
  if @after_id
    inf = tk_split_list(tk_call_without_enc('after', 'info', @after_id))
    [Tk_CBTBL[inf[0][1]], inf[1]]
  else
    nil
  end
end