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.
SHGNO (Enums)
.
C# Definition:
[Flags]
public enum SHGNO : uint {
SHGDN_NORMAL = 0x0000, // default (display purpose)
SHGDN_INFOLDER = 0x0001, // displayed under a folder (relative)
SHGDN_FOREDITING = 0x1000, // for in-place editing
SHGDN_FORADDRESSBAR = 0x4000, // UI friendly parsing name (remove ugly stuff)
SHGDN_FORPARSING = 0x8000, // parsing name for ParseDisplayName()
}
VB Definition:
<Flags()> _
Public Enum SHGNO As UInteger
' default (display purpose)
SHGDN_NORMAL = &H0
' displayed under a folder (relative)
SHGDN_INFOLDER = &H1
' for in-place editing
SHGDN_FOREDITING = &H1000
' UI friendly parsing name (remove ugly stuff)
SHGDN_FORADDRESSBAR = &H4000
' parsing name for ParseDisplayName()
SHGDN_FORPARSING = &H8000
End Enum
Notes:
None.
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!