| LayoutKeyEvent Event | |
| See Also Example |
- eventInfo
- The object that holds the event information
- BubbleEvent
Indicates how the application handles the event. Relevant only when LayoutKeyInfo.BeforeAction is true.
- True: The application handles the event after the current event handler is finished (default).
- False: The application does not handle the event.
Occurs when you print or print preview a layout of an add-on form.
When the layout needs the key of the add-on form, the add-on catches and sets LayoutKeyInfo.LayoutKey to the key.
| Visual Basic |
|---|
Public Event LayoutKeyEvent( _
ByVal eventInfo As LayoutKeyInfo, _
ByRef BubbleEvent As Boolean _
) |
- eventInfo
- The object that holds the event information
- BubbleEvent
Indicates how the application handles the event. Relevant only when LayoutKeyInfo.BeforeAction is true.
- True: The application handles the event after the current event handler is finished (default).
- False: The application does not handle the event.
| Catching the layout key events (C#) | Copy Code | |
|---|---|---|
| ||