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

ComponentModify (Enums)
 
.
Summary

C# Definition:

[Flags]
public enum ComponentModify : int
{
     TYPE        = 0x00000001,
     CHECKED     = 0x00000002,
     DIRTY       = 0x00000004,
     NOSCROLL    = 0x00000008,
     POS_LEFT    = 0x00000010,
     POS_TOP     = 0x00000020,
     SIZE_WIDTH      = 0x00000040,
     SIZE_HEIGHT     = 0x00000080,
     POS_ZINDEX      = 0x00000100,
     SOURCE      = 0x00000200,
     FRIENDLYNAME    = 0x00000400,
     SUBSCRIBEDURL   = 0x00000800,
     ORIGINAL_CSI    = 0x00001000,
     RESTORED_CSI    = 0x00002000,
     CURITEMSTATE    = 0x00004000,
     ALL         = TYPE | CHECKED | DIRTY | NOSCROLL | POS_LEFT | SIZE_WIDTH  |
               SIZE_HEIGHT | POS_ZINDEX | SOURCE |
               FRIENDLYNAME | POS_TOP | SUBSCRIBEDURL | ORIGINAL_CSI |
               RESTORED_CSI | CURITEMSTATE
}

VB Definition:

<Flags()> _
Public Enum ComponentModify
    ALL = &H7FFF
    CHECKED = 2
    CURITEMSTATE = &H4000
    DIRTY = 4
    FRIENDLYNAME = &H400
    NOSCROLL = 8
    ORIGINAL_CSI = &H1000
    POS_LEFT = &H10
    POS_TOP = &H20
    POS_ZINDEX = &H100
    RESTORED_CSI = &H2000
    SIZE_HEIGHT = &H80
    SIZE_WIDTH = &H40
    SOURCE = &H200
    SUBSCRIBEDURL = &H800
    TYPE = 1
Enum ComponentModify
   TODO
End Enum

Notes:

None.

Documentation
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