[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Design.Designer.ScrollingMode

ScrollingMode Property

ScrollingMode

Gets or sets a value representing the scrolling mode for the designer view.

Declaration
public ScrollingMode ScrollingMode { get; set; }
Property Value
Type Description
ScrollingMode

The scrolling modes as defined by the 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.

Examples
// Set the designer to use paged scrolling mode.
designer.ScrollingMode = ScrollingMode.Paged;