Fired when a user clicks on a group's option button.

Parameters

ParameterDescription
GroupThe key of the group whose option button was clicked

Remarks

The OnGroupOptionClick fires whenever the user clicks on the little button in the bottom left corner of a group. The group's unique key is passed as the one and only parameter.

Example

Begin Case
   Case Event EQ "OnGroupOptionClick"
       GroupKey = Param1
       Begin Case
           Case GroupKey EQ "FONT"
               GoSub ShowFontDialog
           Case GroupKey EQ "PARAGRAPH"
               GoSub ShowParagraphDialog
       End Case
End Case
  • No labels