PyObject* py_hideImage(PyObject *self, PyObject *args)
{
  return py_hide(self, args, "ImageLabel");
}
Example #2
0
PyObject* py_hideGraph(PyObject *self, PyObject *args)
{
  return py_hide(self, args, "Graph");
}
Example #3
0
PyObject* py_hideBar(PyObject *self, PyObject *args)
{
  return py_hide(self, args, "Bar");
}
PyObject* py_hideRichText(PyObject *self, PyObject *args)
{
  return py_hide(self, args, "RichTextLabel");
}