ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.Viewer.Common.Model Namespace / MouseMode Enumeration

In This Topic
    MouseMode Enumeration
    In This Topic
    Defines the interaction modes available for mouse input within the viewer.
    Syntax
    'Declaration
     
    Public Enum MouseMode 
       Inherits System.Enum
    public enum MouseMode : System.Enum 
    Members
    MemberDescription
    CopySelectCopySelect mode allows the user to select and copy the selected area from the report. This mode is useful for extracting information without needing to take a full snapshot.
    DefaultDefault mode. This mode is obsolete and should not be used. Use Pan mode instead.
    PanPan mode allows the user to click and drag to move the view of the page. This mode is useful for navigating large pages or reports.
    SnapshotSnapshot mode enables the user to select an area of the report to create a snapshot image. This can be useful for capturing specific information within a report.
    Remarks
    This enumeration allows the application to switch between different modes of mouse interaction, such as panning, selecting, and taking snapshots. Each mode changes how mouse actions are interpreted and what operations can be performed within the viewer.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Viewer.Common.Model.MouseMode

    See Also