CreateWindowEx(UInt32,Int32,String,UInt32,Int32,Int32,Int32,Int32,IntPtr,IntPtr,IntPtr,IntPtr) Method
In This Topic
Syntax
'Declaration
Public Overloads Shared Function CreateWindowEx( _
ByVal As System.UInteger, _
ByVal As System.Integer, _
ByVal As System.String, _
ByVal As System.UInteger, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.IntPtr, _
ByVal As System.IntPtr, _
ByVal As System.IntPtr, _
ByVal As System.IntPtr _
) As System.IntPtr
'Usage
Dim dwExStyle As System.UInteger
Dim atomClassName As System.Integer
Dim lpszWindowName As System.String
Dim style As System.UInteger
Dim x As System.Integer
Dim y As System.Integer
Dim width As System.Integer
Dim height As System.Integer
Dim hwndParent As System.IntPtr
Dim hMenu As System.IntPtr
Dim hInst As System.IntPtr
Dim pvParam As System.IntPtr
Dim value As System.IntPtr
value = NUser32.CreateWindowEx(dwExStyle, atomClassName, lpszWindowName, style, x, y, width, height, hwndParent, hMenu, hInst, pvParam)
public static System.IntPtr CreateWindowEx(
System.uint ,
System.int ,
System.string ,
System.uint ,
System.int ,
System.int ,
System.int ,
System.int ,
System.IntPtr ,
System.IntPtr ,
System.IntPtr ,
System.IntPtr
)
Parameters
- dwExStyle
- atomClassName
- lpszWindowName
- style
- x
- y
- width
- height
- hwndParent
- hMenu
- hInst
- pvParam
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also