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 Structures, prefix the name with the module name and a period.
CREATESTRUCT (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)]
public struct CREATESTRUCT
{
public IntPtr lpCreateParams;
public IntPtr hInstance;
public IntPtr hMenu;
public IntPtr hwndParent;
public int cy;
public int cx;
public int y;
public int x;
public int style;
public IntPtr lpszName;
public IntPtr lpszClass;
public int dwExStyle;
}
VB Definition:
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Auto)> _
Public Structure CREATESTRUCT
Public lpCreateParams As IntPtr
Public hInstance As IntPtr
Public hMenu As IntPtr
Public hwndParent As IntPtr
Public cy As Integer
Public cx As Integer
Public y As Integer
Public x As Integer
Public style As Integer
Public lpszName As IntPtr
Public lpszClass As IntPtr
Public dwExStyle As Integer
End Structure
User-Defined Field Types:
None.
Notes:
None.
Like CreateWindow, but creates the window with an extended window style.
12/23/2022 5:31:17 AM - 147.78.47.33
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.