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

CompItemState (Enums)
 
.
Summary
Used by IActiveDesktop interface COMPSTATEINFO structure

C# Definition:

[Flags]
public enum CompItemState : int
{
     NORMAL          = 0x00000001,
     FULLSCREEN      = 00000002,
     SPLIT           = 0x00000004,
     VALIDSIZESTATEBITS  = NORMAL | SPLIT | FULLSCREEN,
     VALIDSTATEBITS      = NORMAL | SPLIT | FULLSCREEN | unchecked((int)0x80000000) | 0x40000000
}

VB Definition:

<Flags()> _
Public Enum CompItemState
    FULLSCREEN = 2
    NORMAL = 1
    SPLIT = 4
    VALIDSIZESTATEBITS = 7
    VALIDSTATEBITS = -1073741817
End Enum

Notes:

None.

Documentation
 

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