ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / Designer Class / ScrollingMode Property
Example

In This Topic
    ScrollingMode Property (Designer)
    In This Topic
    Gets or sets a value representing the scrolling mode for the designer view.
    Syntax
    'Declaration
     
    Public Property ScrollingMode As ScrollingMode
    public ScrollingMode ScrollingMode {get; set;}

    Property Value

    The scrolling modes as defined by the GrapeCity.Viewer.Common.Model.ScrollingMode enumeration.
    Remarks
    The default value is ScrollingMode.Continuous, which allows for smooth scrolling through the designer. This property can be set to ScrollingMode.Paged to restrict the view to a single page at a time, enhancing the focus on individual report sections during design.
    Example
    // Set the designer to use paged scrolling mode.
    designer.ScrollingMode = ScrollingMode.Paged;
    See Also