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

SHGNO (Enums)
 
.
Summary
TODO - a short description

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.

Documentation
SHGNO on MSDN
 

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