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

ToolbarStyle (Enums)
 
.
Summary
TODO - a short description

C# Definition:

enum ToolbarStyle
{

enum ToolbarStyles

{

    TBSTYLE_BUTTON = 0x0,
    TBSTYLE_SEP = 0x1,
    TBSTYLE_CHECK = 0x2,
    TBSTYLE_GROUP = 0x4,
    TBSTYLE_CHECKGROUP = 0x6,
    TBSTYLE_TOOLTIPS = 0x100,
    TBSTYLE_WRAPABLE = 0x200,
    TBSTYLE_ALTDRAG = 0x400,
    TBSTYLE_FLAT = 0x800,
    TBSTYLE_LIST = 0x1000,
    TBSTYLE_CUSTOMERASE = 0x2000,
    TBSTYLE_REGISTERDROP = 0x4000,
    TBSTYLE_TRANSPARENT = 0x8000
}

}

VB Definition:

Enum ToolbarStyle

Enum ToolbarStyles

    TBSTYLE_BUTTON = 0x0
    TBSTYLE_SEP = 0x1
    TBSTYLE_CHECK = 0x2
    TBSTYLE_GROUP = 0x4
    TBSTYLE_CHECKGROUP = 0x6
    TBSTYLE_TOOLTIPS = 0x100
    TBSTYLE_WRAPABLE = 0x200
    TBSTYLE_ALTDRAG = 0x400
    TBSTYLE_FLAT = 0x800
    TBSTYLE_LIST = 0x1000
    TBSTYLE_CUSTOMERASE = 0x2000
    TBSTYLE_REGISTERDROP = 0x4000
    TBSTYLE_TRANSPARENT = 0x8000
End Enum

End Enum

Notes:

None.

VB.Net ''' This is a fix of the above code VB does not use the C# 0x Format it uses &H values though if you wanted you could probably

convert this particular piece of code into actual Decimal values ... Dewayne Gunter

Enum ToolbarStyle

    TBSTYLE_BUTTON = &H0
    TBSTYLE_SEP = &H1
    TBSTYLE_CHECK = &H2
    TBSTYLE_GROUP = &H4
    TBSTYLE_CHECKGROUP = &H6
    TBSTYLE_TOOLTIPS = &H100
    TBSTYLE_WRAPABLE = &H200
    TBSTYLE_ALTDRAG = &H400
    TBSTYLE_FLAT = &H800
    TBSTYLE_LIST = &H1000
    TBSTYLE_CUSTOMERASE = &H2000
    TBSTYLE_REGISTERDROP = &H4000
    TBSTYLE_TRANSPARENT = &H8000

End Enum

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