'Declaration Public Property ScrollingMode As ScrollingMode
public ScrollingMode ScrollingMode {get; set;}
'Declaration Public Property ScrollingMode As ScrollingMode
public ScrollingMode ScrollingMode {get; set;}
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.// Set the designer to use paged scrolling mode.
designer.ScrollingMode = ScrollingMode.Paged;