Scatena l'evento di scripting OnToolBarButtonClick della cDoSection.
Firma [cDoSction.Name]_OnToolBarButtonClick ( cDoSection as cDoSection, e as cDoSectionToolBarButtonEventArgs)
Esempio
Sub FILTER_OnToolBarButtonClick (cDoSection as cDoSection, e as cDoSectionToolBarButtonEventArgs)
''' e.cDoToolBarButton è valorizzato solo per i bottoni custom
if Not e.cDoToolBarButton is Nothing Then
Select Case e.cDoToolBarButton.name
Case "Bottone1"
'Tuo codice....
'Case ...
End Select
else
'Gestione Bottoni standard.....
end if
End Sub