Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
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
TODO - a short description
8/31/2014 9:33:22 AM - richardtuin@gmail.com-80.100.26.210
TODO - a short description
8/31/2014 9:33:22 AM - richardtuin@gmail.com-80.100.26.210
TODO - a short description
8/31/2014 9:33:22 AM - richardtuin@gmail.com-80.100.26.210
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!