ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearPageView.DelegatePageCalculate Delegate
In/out parameter. ImGearScrollInfo object with current attributes for vertical and horizontal scrollbars passed by reference.




In This Topic
    ImGearPageView.DelegatePageCalculate Delegate
    In This Topic
    This delegate, if registered, is automatically called from the ImGearPageView class when the user presses Page Up or Page Down.
    Syntax
    'Declaration
     
    Public Delegate Sub ImGearPageView.DelegatePageCalculate( _
       ByRef scrollInfo As ImGearScrollInfo _
    ) 
    'Usage
     
    Dim instance As New ImGearPageView.DelegatePageCalculate(AddressOf HandlerMethod)
    public delegate void ImGearPageView.DelegatePageCalculate( 
       ref ImGearScrollInfo scrollInfo
    )
    public: __gc __delegate void ImGearPageView.DelegatePageCalculate( 
       ref ImGearScrollInfo scrollInfo
    )
    public delegate void ImGearPageView.DelegatePageCalculate( 
       ImGearScrollInfo% scrollInfo
    )

    Parameters

    scrollInfo
    In/out parameter. ImGearScrollInfo object with current attributes for vertical and horizontal scrollbars passed by reference.
    Remarks
    This increment is not standardized, and so its calculation is left in the hands of the user.
    See Also