UtilWin32MakeWParam(Int32, Int32) Method
Creates a wParam value from two
Int32 values.
You must call this method overload if you need to use negative values.
Namespace: DevCase.Win32Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static IntPtr MakeWParam(
int lo,
int hi
)
Public Shared Function MakeWParam (
lo As Integer,
hi As Integer
) As IntPtr
Dim lo As Integer
Dim hi As Integer
Dim returnValue As IntPtr
returnValue = UtilWin32.MakeWParam(lo,
hi)
public:
static IntPtr MakeWParam(
int lo,
int hi
)
static member MakeWParam :
lo : int *
hi : int -> IntPtr
No code example is currently available or this language may not be supported.
- lo Int32
-
The low-order Int32 value.
- hi Int32
-
The high-order Int32 value.
IntPtr
The resulting wParam value.
This is a code example.
No code example is currently available or this language may not be supported.
Dim wParam as IntPtr = MakeWParam(Integer.MaxValue, Integer.MaxValue)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.