User32InflateRect(Rectangle, Int32, Int32) 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 InflateRect(
out Rectangle refRect,
int x,
int y
)
<DllImportAttribute("User32.dll">]
Public Shared Function InflateRect (
<OutAttribute> ByRef refRect As Rectangle,
x As Integer,
y As Integer
) As Boolean
Dim refRect As Rectangle
Dim x As Integer
Dim y As Integer
Dim returnValue As Boolean
returnValue = User32.InflateRect(refRect,
x, y)
public:
[DllImportAttribute(L"User32.dll")]
static bool InflateRect(
[InAttribute] [OutAttribute] Rectangle% refRect,
[InAttribute] int x,
[InAttribute] int y
)
[<DllImportAttribute("User32.dll")>]
static member InflateRect :
refRect : Rectangle byref *
x : int *
y : int -> bool
No code example is currently available or this language may not be supported.
- refRect Rectangle
-
A pointer to the Rectangle structure to be increased or decreased.
- x Int32
-
The amount to increase or decrease the Rectangle width.
This parameter must be negative to decrease the width.
- y Int32
-
The amount to increase or decrease the Rectangle height.
This parameter must be negative to decrease the height.
Boolean
If the function succeeds, the return value is
.
If the function fails, the return value is
.