ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.Viewer.Common.Model Namespace / ActiveModelListenExtensions Class / ObserveRangeOnStaticCollection<T> Method
Type of collection element.
The collection to observe.
Floating range to observe elements within.
The item handler.

In This Topic
    ObserveRangeOnStaticCollection<T> Method
    In This Topic
    Observes modifyable range of regulat items collection.
    Syntax
    'Declaration
     
    Public Shared Function ObserveRangeOnStaticCollection(Of T)( _
       ByVal list As IItemCollection(Of T), _
       ByVal observedRange As Observable(Of Range), _
       ByVal subscribeItem As Func(Of T,Integer,IDisposable) _
    ) As IDisposable
    public static IDisposable ObserveRangeOnStaticCollection<T>( 
       IItemCollection<T> list,
       Observable<Range> observedRange,
       Func<T,int,IDisposable> subscribeItem
    )

    Parameters

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

    Type Parameters

    T
    Type of collection element.
    See Also