Method: PLplot::GraphicsIn#keysym

Defined in:
ext/rbplplot.c

#keysymInteger

Gets key selected.

Returns:

  • (Integer)


4270
4271
4272
4273
4274
4275
4276
# File 'ext/rbplplot.c', line 4270

static VALUE
rb_cPLGraphicsIn_keysym(VALUE self)
{
  PLGraphicsIn *p;
  Data_Get_Struct(self, PLGraphicsIn, p);
  return UINT2NUM(p->keysym);
}