Specifies the minimum scrolling position.
Specifies the maximum scrolling position.
Specifies the page size, in device units. A scroll bar uses this value to determine the appropriate size of the proportional scroll box.
Specifies the position of the scroll box.
Specifies the immediate position of a scroll box that the user is dragging.





In This Topic
GdPicture14 Namespace / ThumbnailEx.ScrollEventHandler Delegate

ThumbnailEx.ScrollEventHandler Delegate

In This Topic
Occurs when the control is scrolled.
Syntax
'Declaration
 
<GuidAttribute("DA4CC89C-AA74-399C-8F96-72D85826E7D5")>
Public Delegate Sub ThumbnailEx.ScrollEventHandler( _
   ByVal Min As Integer, _
   ByVal Max As Integer, _
   ByVal Page As Integer, _
   ByVal Pos As Integer, _
   ByVal TrackPos As Integer _
) 
[Guid("DA4CC89C-AA74-399C-8F96-72D85826E7D5")]
public delegate void ThumbnailEx.ScrollEventHandler( 
   int Min,
   int Max,
   int Page,
   int Pos,
   int TrackPos
)
public delegate ThumbnailEx.ScrollEventHandler( 
    Min: Integer;
    Max: Integer;
    Page: Integer;
    Pos: Integer;
    TrackPos: Integer
);
GuidAttribute("DA4CC89C-AA74-399C-8F96-72D85826E7D5")
public delegate ThumbnailEx.ScrollEventHandler( 
   Min : int,
   Max : int,
   Page : int,
   Pos : int,
   TrackPos : int
)
[Guid("DA4CC89C-AA74-399C-8F96-72D85826E7D5")]
public: __gc __delegate void ThumbnailEx.ScrollEventHandler( 
   int Min,
   int Max,
   int Page,
   int Pos,
   int TrackPos
)
[Guid("DA4CC89C-AA74-399C-8F96-72D85826E7D5")]
public delegate void ThumbnailEx.ScrollEventHandler( 
   int Min,
   int Max,
   int Page,
   int Pos,
   int TrackPos
)

Parameters

Min
Specifies the minimum scrolling position.
Max
Specifies the maximum scrolling position.
Page
Specifies the page size, in device units. A scroll bar uses this value to determine the appropriate size of the proportional scroll box.
Pos
Specifies the position of the scroll box.
TrackPos
Specifies the immediate position of a scroll box that the user is dragging.
See Also