T
Type of collection element.
ActiveReports 8
ObserveRange<T> Method
See Also 
GrapeCity.ActiveReports.Viewer.Win.v8 Assembly > GrapeCity.Viewer.Common.Model Namespace > ActiveModelListenExtensions Class : ObserveRange<T> Method

list
The collection to observe.
subscribeItem
The item handler.
range
Floating range to observe elements within.

Glossary Item Box

Observes modifyable range of modifyable collection.

Syntax

Visual Basic (Declaration) 
Public Shared Function ObserveRange(Of T)( _
   ByVal list As INotificationCollection(Of T), _
   ByVal subscribeItem As System.Func(Of T,Integer,IDisposable), _
   ByVal range As Observable(Of Range) _
) As System.IDisposable
C# 
public static System.IDisposable ObserveRange<T>( 
   INotificationCollection<T> list,
   System.Func<T,int,IDisposable> subscribeItem,
   Observable<Range> range
)

Parameters

list
The collection to observe.
subscribeItem
The item handler.
range
Floating range to observe elements within.

Type Parameters

T
Type of collection element.

Requirements

Target Platforms: Windows 7, 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