Method: Curses::Menu#format

Defined in:
ext/curses/curses.c

#formatObject

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
menu_format_m(VALUE obj)
{
    struct menudata *menup;
    int rows, cols;

    GetMENU(obj, menup);
    menu_format(menup->menu, &rows, &cols);
    return rb_assoc_new(INT2NUM(rows), INT2NUM(cols));
}