Method: XCB::ExposeEvent#width
- Defined in:
- ext/xproto.c
#width ⇒ Object
1272 1273 1274 1275 1276 1277 1278 |
# File 'ext/xproto.c', line 1272
static VALUE
r_XCB_ExposeEvent_get_width(VALUE r_self)
{
xcb_expose_event_t *event;
Data_Get_Struct(r_self, xcb_expose_event_t, event);
return INT2FIX(event->width);
}
|