inflate method
Contents
[
Hide
]inflate
Inflates this RectangleF
by the specified amount.
def inflate(self, size):
...
Parameter | Type | Description |
---|---|---|
size | SizeF | The amount to inflate this rectangle. |
inflate
Inflates this RectangleF
structure by the specified amount.
def inflate(self, x, y):
...
Parameter | Type | Description |
---|---|---|
x | float | The amount to inflate this RectangleF structure horizontally. |
y | float | The amount to inflate this RectangleF structure vertically. |
inflate
Creates and returns an inflated copy of the specified RectangleF
structure. The copy is inflated by the specified amount. The original rectangle remains unmodified.
Returns
The inflated RectangleF
.
def inflate(self, rect, x, y):
...
Parameter | Type | Description |
---|---|---|
rect | RectangleF | The RectangleF to be copied. This rectangle is not modified. |
x | float | The amount to inflate the copy of the rectangle horizontally. |
y | float | The amount to inflate the copy of the rectangle vertically. |
See Also
- module
aspose.cad
- class
RectangleF