可以,参考
WorkBook724.cpt
=========================
var btn= this.options.form.getWidgetByName("btn").getValue();
if(btn=='隐藏')
{
this.options.form.getWidgetByName("btn").setValue("显示");
this.options.form.getWidgetByName("lb0").setVisible(false);
}
else
{
this.options.form.getWidgetByName("btn").setValue("隐藏");
this.options.form.getWidgetByName("lb0").setVisible(true);
}