Method: Curses::Menu#format
- Defined in:
- ext/curses/curses.c
#format ⇒ Object
call-seq:
format
Get the maximum size of the menu.
3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 |
# File 'ext/curses/curses.c', line 3758 static VALUE (VALUE obj) { struct *; int rows, cols; GetMENU(obj, ); (->, &rows, &cols); return rb_assoc_new(INT2NUM(rows), INT2NUM(cols)); } |