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 Constants, prefix the name with the module name and a period.
PERCEIVED (Constants)
.
C# Constants:
[Flags]
enum PerceivedFlag
{
///<summary>No perceived type was found (PERCEIVED_TYPE_UNSPECIFIED).</summary>
Undefined = 0x0000,
///<summary>The perceived type was determined through an association in the registry.</summary>
Softcoded = 0x0001,
///<summary>The perceived type is inherently known to Windows.</summary>
Hardcoded = 0x0002,
///<summary>The perceived type was determined through a codec provided with Windows.</summary>
NativeSupport = 0x0004,
///<summary>The perceived type is supported by the GDI+ library.</summary>
GdiPlus = 0x0010,
///<summary>The perceived type is supported by the Windows Media SDK.</summary>
WMSDK = 0x0020,
///<summary>The perceived type is supported by Windows compressed folders.</summary>
ZipFolder = 0x0040
}
VB Constants:
<Flags> _
Enum PerceivedFlag
'''<summary>No perceived type was found (PERCEIVED_TYPE_UNSPECIFIED).</summary>
Undefined = &h0000
'''<summary>The perceived type was determined through an association in the registry.</summary>
Softcoded = &h0001
'''<summary>The perceived type is inherently known to Windows.</summary>
Hardcoded = &h0002
'''<summary>The perceived type was determined through a codec provided with Windows.</summary>
NativeSupport = &h0004
'''<summary>The perceived type is supported by the GDI+ library.</summary>
GdiPlus = &h0010
'''<summary>The perceived type is supported by the Windows Media SDK.</summary>
WMSDK = &h0020
'''<summary>The perceived type is supported by Windows compressed folders.</summary>
ZipFolder = &h0040
End Enum
Notes:
None.
Retrieves a file's perceived type based on its extension.
2/10/2016 8:50:49 AM - -37.44.115.111
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!