RC-WinTrans Object Model Help |
Application.OnSelectGroupItem |
Event fired when a group item is selected.
Syntax: |
OnSelectGroupItem(Project As TranslationProject, ProjectFile As ProjectFile, Group As Group) |
Parameters: |
Project Project of the group that has been selected. ProjectFile Project file of the group that has been selected. Group Group that has been selected.
|
Example: | ' in a class module "EventClass" Dim WithEvents App As Application Private Sub App_OnSelectGroupItem(ByVal Project As TranslationProject, ByVal ProjectFile As ProjectFile, ByVal Group As Group) [...] End Sub ' in a module Public EventManager As New EventClass Sub TestMacro() Set EventManager.App = Application End Sub |
See also: