Is Visible hook

This hook is used to conditionally add the custom linked report. This hook can use the actual values of the form fields. The availability of a report depends on the options selected in the form.

Example:

function extern boolean txcpr040111000.is.visible()
{
        if ext.details = tcyesno.yes then
                return(true)
        else
                return(false)
        endif
}