User32EqualRect(Rectangle, Rectangle) Method
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("User32.dll")]
public static bool EqualRect(
in Rectangle refRect1,
in Rectangle refRect2
)
<DllImportAttribute("User32.dll">]
Public Shared Function EqualRect (
ByRef refRect1 As Rectangle,
ByRef refRect2 As Rectangle
) As Boolean
Dim refRect1 As Rectangle
Dim refRect2 As Rectangle
Dim returnValue As Boolean
returnValue = User32.EqualRect(refRect1,
refRect2)
public:
[DllImportAttribute(L"User32.dll")]
static bool EqualRect(
[InAttribute] Rectangle% refRect1,
[InAttribute] Rectangle% refRect2
)
[<DllImportAttribute("User32.dll")>]
static member EqualRect :
refRect1 : Rectangle byref *
refRect2 : Rectangle byref -> bool
No code example is currently available or this language may not be supported.
- refRect1 Rectangle
-
A pointer to the NativeRectangle structure that contains the logical coordinates of the first rectangle.
- refRect2 Rectangle
-
A pointer to the NativeRectangle structure that contains the logical coordinates of the second rectangle.
Boolean
If the two rectangles are identical, the return value is
.
If the two rectangles are not identical, the return value is
.