LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
Inflate(LeadRect,Int32,Int32) Method
See Also 
Leadtools Namespace > LeadRect Structure > Inflate Method : Inflate(LeadRect,Int32,Int32) Method



rect
The LeadRect to be copied. This rectangle is not modified.
x
The amount to inflate the copy of the rectangle along the x-axis.
y
The amount to inflate the copy of the rectangle along the y-axis.
rect
The LeadRect to be copied. This rectangle is not modified.
x
The amount to inflate the copy of the rectangle along the x-axis.
y
The amount to inflate the copy of the rectangle along the y-axis.
Creates and returns an inflated copy of the specified LeadRect structure. The copy is inflated by the specified amount. The original rectangle remains unmodified. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Overloads Public Shared Function Inflate( _
   ByVal rect As LeadRect, _
   ByVal x As Integer, _
   ByVal y As Integer _
) As LeadRect
Visual Basic (Usage)Copy Code
Dim rect As LeadRect
Dim x As Integer
Dim y As Integer
Dim value As LeadRect
 
value = LeadRect.Inflate(rect, x, y)
C# 
public static LeadRect Inflate( 
   LeadRect rect,
   int x,
   int y
)
C++/CLI 
public:
static LeadRect Inflate( 
   LeadRect rect,
   int x,
   int y
) 

Parameters

rect
The LeadRect to be copied. This rectangle is not modified.
x
The amount to inflate the copy of the rectangle along the x-axis.
y
The amount to inflate the copy of the rectangle along the y-axis.

Return Value

The inflated LeadRect structure.

Remarks

This method inflates this rectangle, not a copy of it. The inflation along an axis is in two directions (minus direction and plus direction). For example, if a 50 by 50 rectangle is inflated by 50 in the x-axis, the resulting rectangle will be 150 units long (the original 50, plus the 50 in the minus direction, and plus the 50 in the plus direction). The rectangle's geometric center is maintained.

If either size.Width or size.Height is negative, the LeadRect is deflated in the corresponding direction.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also