DetailsViewDesigner.SampleRowCount Property

Definition

Gets the number of sample rows for the associated control to display.

protected override int SampleRowCount { get; }

Property Value

The number of sample rows to show.

Examples

The following code example shows how to override the SampleRowCount property in a class inherited from the DetailsViewDesigner class to change the number of page links appearing in the pager row of the DetailsView control at design time. The example causes five page links to be displayed.

// Determines the number of page links in the pager row
// when viewed in the designer.
protected override int SampleRowCount
{
    get
    {
        // Render five page links in the pager row.
        return 5;
    }
} // SampleRowCount

Remarks

The SampleRowCount property always returns the number 2. This causes two page links to be displayed in the pager row of the DetailsView control at design time.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also