Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

ScrollInfoMask (Enums)
 
.
Summary
ScrollInfoMask - Scroll information Mask

C# Definition:

public enum ScrollInfoMask : uint
{
    SIF_RANGE = 0x1,
    SIF_PAGE = 0x2,
    SIF_POS = 0x4,
    SIF_DISABLENOSCROLL = 0x8,
    SIF_TRACKPOS = 0x10,
    SIF_ALL = (SIF_RANGE | SIF_PAGE | SIF_POS | SIF_TRACKPOS),
}    

VB.NET Definition:

Public Enum ScrollInfoMask As UInteger
    SIF_RANGE = &H1
    SIF_PAGE = &H2
    SIF_POS = &H4
    SIF_DISABLENOSCROLL = &H8
    SIF_TRACKPOS = &H10
    SIF_ALL = (SIF_RANGE Or SIF_PAGE Or SIF_POS Or SIF_TRACKPOS)
Public enum ScrollInfoMask : uint
    SIF_RANGE = 0x1
    SIF_PAGE = 0x2
    SIF_POS = 0x4
    SIF_DISABLENOSCROLL = 0x8
    SIF_TRACKPOS = 0x10
    SIF_ALL = (SIF_RANGE | SIF_PAGE | SIF_POS | SIF_TRACKPOS)
End Enum    

VB Definition:

Public Enum ScrollInfoMask
    SIF_RANGE As Long = &H1
    SIF_PAGE As Long = &H2
    SIF_POS As Long = &H4
    SIF_DISABLENOSCROLL As Long = &H8
    SIF_TRACKPOS As Long = &H10

VB.NET Definition:

Public Enum ScrollInfoMask As UInteger
    SIF_RANGE = &H1
    SIF_PAGE = &H2
    SIF_POS = &H4
    SIF_DISABLENOSCROLL = &H8
    SIF_TRACKPOS = &H10
    SIF_ALL = (SIF_RANGE Or SIF_PAGE Or SIF_POS Or SIF_TRACKPOS)
End Enum    

VB Definition:

Public Enum ScrollInfoMask
    SIF_RANGE As Long = &H1
    SIF_PAGE As Long = &H2
    SIF_POS As Long = &H4
    SIF_DISABLENOSCROLL As Long = &H8
    SIF_TRACKPOS As Long = &H10
    SIF_ALL = (SIF_RANGE Or SIF_PAGE Or SIF_POS Or SIF_TRACKPOS)
End Enum    

Notes:

None.

Documentation
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions