Method: Tk::Menu#popup

Defined in:
lib/tk/menu.rb


173
174
175
176
177
178
179
180
181
# File 'lib/tk/menu.rb', line 173

def popup(x, y, index=nil)
  if index
    tk_call_without_enc('tk_popup', path, x, y,
                        _get_eval_enc_str(index))
  else
    tk_call_without_enc('tk_popup', path, x, y)
  end
  self
end