Help for this page

Select Code to Download


  1. or download this
    # Check if this is a problem widget, and if it is, is it visible
    if(
    ...
      ) {
        ...
    }
    
  2. or download this
    #Get reference to widget based on name then check if it's visible
    my $ref = \${$widget_name};
    if($$ref->IsVisible()) {
        ...
    }