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

COMPSTATEINFO (Structures)
 
.
Summary

C# Definition:

[StructLayout(LayoutKind.Sequential)]
public struct COMPSTATEINFO
{
     public static readonly int SizeOf = Marshal.SizeOf(typeof(COMPSTATEINFO));
     public int dwSize;
     public int iLeft;
     public int iTop;
     public int dwWidth;
     public int dwHeight;
     public CompItemState dwItemState;
}

VB Definition:

<StructLayout(LayoutKind.Sequential)> _

Public Structure COMPSTATEINFO
    Public Shared ReadOnly SizeOf As Integer
    Public dwSize As Integer
    Public iLeft As Integer
    Public iTop As Integer
    Public dwWidth As Integer
    Public dwHeight As Integer
    Public dwItemState As CompItemState
    Shared Sub New()
    COMPSTATEINFO.SizeOf = Marshal.SizeOf(GetType(COMPSTATEINFO))
    End Sub
End Structure

User-Defined Field Types:

None.

Notes:

see CompItemState

Documentation

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions