Method: XCB::ResizeRequestEvent#width
- Defined in:
- ext/xproto.c
#width ⇒ Object
1720 1721 1722 1723 1724 1725 1726 |
# File 'ext/xproto.c', line 1720
static VALUE
r_XCB_ResizeRequestEvent_get_width(VALUE r_self)
{
xcb_resize_request_event_t *event;
Data_Get_Struct(r_self, xcb_resize_request_event_t, event);
return INT2FIX(event->width);
}
|