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.
SBOrientation (Enums)
.
Summary
C# Definition:
public enum SBOrientation : int
{
SB_HORZ = 0x0,
SB_VERT = 0x1,
SB_CTL = 0x2,
SB_HORZ = 0x0
SB_VERT = 0x1
SB_CTL = 0x2
SB_BOTH = 0x3
}
VB.NET Definition:
Public Enum SBOrientation As Integer
SB_HORZ = &H0
SB_VERT = &H1
SB_CTL = &H2
SB_BOTH = &H3
End Enum
VB Definition:
Public Enum SBOrientation
SB_HORZ As Long = &H0
SB_VERT As Long = &H1
SB_CTL As Long = &H2
SB_BOTH As Long = &H3
End Enum
Notes:
Also defined in .NET as System.Windows.Forms.Orientation
Documentation
SBOrientation - Scollbar orientation
9/12/2012 2:11:30 PM - -94.155.63.150
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!