Edit

Share via


Panel.Paginate Property

Definition

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.

Applies to

See also