DetailsViewDesigner.SampleRowCount 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 the number of sample rows for the associated control to display.
protected:
virtual property int SampleRowCount { int get(); };
protected override int SampleRowCount { get; }
member this.SampleRowCount : int
Protected Overrides ReadOnly Property SampleRowCount As Integer
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
' Determines the number of page links in the pager row
' when viewed in the designer.
Protected Overrides ReadOnly Property SampleRowCount() As Integer
Get
' Render five page links in the pager row.
Return 5
End Get
End Property ' 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.