[]
Gets or sets a value representing the scrolling mode for the designer view.
public ScrollingMode ScrollingMode { get; set; }
Type | Description |
---|---|
ScrollingMode | The scrolling modes as defined by the ScrollingMode enumeration. |
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.
// Set the designer to use paged scrolling mode.
designer.ScrollingMode = ScrollingMode.Paged;