Version

VisualPaginator Property (EmbeddedVisualReportSection)

Returns the visual paginator that will be used inside the report section (read-only).
Syntax
'Declaration
 
Public ReadOnly Property VisualPaginator As IEmbeddedVisualPaginator
public IEmbeddedVisualPaginator VisualPaginator {get;}

Property Value

An object that implements the Infragistics.Windows.Reporting.IEmbeddedVisualPaginator interface or null.
Remarks

If the VisualPaginator was supplied in the constructor it will be returned by this property. However, if the SourceVisual implements the Infragistics.Windows.Reporting.IEmbeddedVisualPaginatorFactory interface then this property will return null except during a pagination operation.

Note:XamDataGrid implements the Infragistics.Windows.Reporting.IEmbeddedVisualPaginatorFactory interface and returns a special derived class of DataPresenterBase as the VisualPaginator. Therefore, if special event handling is required, the events can be wired up in the PaginationStarting event by casting the VisualPaginator to DataPresenterBase. Those events can be unwired in the PaginationEnded event.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also