Panel.Paginate Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a Boolean value indicating whether or not to paginate the Panel control. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
virtual property bool Paginate { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public virtual bool Paginate { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Paginate : bool with get, set
Public Overridable Property Paginate As Boolean
Property Value
true
to paginate the Panel; otherwise, false
.
- Attributes
Remarks
The Paginated event is raised after form pagination occurs.
Note
Even if the Paginate property is set to false
, pagination can still occur if a form's ControlToPaginate property is set.
Note
To allow pagination in a Panel control within a form, you must set Paginate to true
in both the form and the panel.