PrintDocument for WinForms | ComponentOne
C1.Win.PrintPreview.4.5.2 Assembly / C1.Win.C1Preview Namespace / C1PreviewPane Class / FormsUserAction Event

In This Topic
    FormsUserAction Event (C1PreviewPane)
    In This Topic
    Occurs when user performs some action on RenderInputBase object within preview (Click, MouseDown etc).
    Syntax
    'Declaration
     
    Public Event FormsUserAction As FormsUserActionEventHandler
    public event FormsUserActionEventHandler FormsUserAction
    Event Data

    The event handler receives an argument of type FormsUserActionEventArgs containing data related to this event. The following FormsUserActionEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets a value indicating whether the default handling of the user action should take place. Set this property to true to cancel the default handling.  
    Gets the C1.C1Preview.InputAction object that will handle the user action by default. This parameter can be null if no action is associated with the specified user action.  
    Gets the C1.C1Preview.RenderInputBase object corresponding to the input control which caused the event.  
    Gets the user action (Click, MouseDown, MouseUp etc.).  
    See Also