Method: XCB::QueryTextExtentsReply#draw_direction
- Defined in:
- ext/xproto.c
#draw_direction ⇒ Object
3671 3672 3673 3674 3675 3676 3677 |
# File 'ext/xproto.c', line 3671
static VALUE
r_XCB_QueryTextExtentsReply_get_draw_direction(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->draw_direction);
}
|