ImageGear .NET v25.2 - Updated
ImageGear.Core Assembly / ImageGear.Display Namespace / ImGearScrollChangedEventArgs Class / ImGearScrollChangedEventArgs Constructor
The type of scrollbar change.
The type of the scrollbar that is being scrolled.
The scrolling information.
Whether or not the view should be redrawn.
Whether or not the scrollbar is enabled.
Whether or not the scrollbar is visible.




In This Topic
    ImGearScrollChangedEventArgs Constructor
    In This Topic
    Initializes a new instance of the ImGearScrollChangedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal scrollChangeType As ImGearScrollChangeType, _
       ByVal scrollBarType As ImGearScrollBarType, _
       ByVal scrollInfo As ImGearScrollInfo, _
       ByVal redraw As Boolean, _
       ByVal isEnabled As Boolean, _
       ByVal isVisible As Boolean _
    )
    'Usage
     
    Dim scrollChangeType As ImGearScrollChangeType
    Dim scrollBarType As ImGearScrollBarType
    Dim scrollInfo As ImGearScrollInfo
    Dim redraw As Boolean
    Dim isEnabled As Boolean
    Dim isVisible As Boolean
     
    Dim instance As New ImGearScrollChangedEventArgs(scrollChangeType, scrollBarType, scrollInfo, redraw, isEnabled, isVisible)
    public ImGearScrollChangedEventArgs( 
       ImGearScrollChangeType scrollChangeType,
       ImGearScrollBarType scrollBarType,
       ImGearScrollInfo scrollInfo,
       bool redraw,
       bool isEnabled,
       bool isVisible
    )
    public: ImGearScrollChangedEventArgs( 
       ImGearScrollChangeType scrollChangeType,
       ImGearScrollBarType scrollBarType,
       ImGearScrollInfo scrollInfo,
       bool redraw,
       bool isEnabled,
       bool isVisible
    )
    public:
    ImGearScrollChangedEventArgs( 
       ImGearScrollChangeType scrollChangeType,
       ImGearScrollBarType scrollBarType,
       ImGearScrollInfo scrollInfo,
       bool redraw,
       bool isEnabled,
       bool isVisible
    )

    Parameters

    scrollChangeType
    The type of scrollbar change.
    scrollBarType
    The type of the scrollbar that is being scrolled.
    scrollInfo
    The scrolling information.
    redraw
    Whether or not the view should be redrawn.
    isEnabled
    Whether or not the scrollbar is enabled.
    isVisible
    Whether or not the scrollbar is visible.
    See Also