ToolbarStyle (Enums)
Last changed: richardtuin@gmail.com-80.100.26.210

.
Summary
TODO - a short description

C# Definition:

enum ToolbarStyle
{
    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
    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

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