Region.Inflate Method

Definition

Overloads

Inflate(Double)

Returns a region that is expanded by or has all of its subregions expanded by the specified size.

Inflate(Double, Double, Double, Double)

Returns a region that is expanded by or has all of its subregions expanded by the specified values.

Inflate(Double)

Returns a region that is expanded by or has all of its subregions expanded by the specified size.

public:
 Microsoft::Maui::Controls::Region Inflate(double size);
public Microsoft.Maui.Controls.Region Inflate (double size);
member this.Inflate : double -> Microsoft.Maui.Controls.Region
Public Function Inflate (size As Double) As Region

Parameters

size
Double

The amount by which to move each side of the region or its subregions.

Returns

A region that is expanded by or has all of its subregions expanded by the specified size.

Applies to

Inflate(Double, Double, Double, Double)

Returns a region that is expanded by or has all of its subregions expanded by the specified values.

public:
 Microsoft::Maui::Controls::Region Inflate(double left, double top, double right, double bottom);
public Microsoft.Maui.Controls.Region Inflate (double left, double top, double right, double bottom);
member this.Inflate : double * double * double * double -> Microsoft.Maui.Controls.Region
Public Function Inflate (left As Double, top As Double, right As Double, bottom As Double) As Region

Parameters

left
Double

The amount to move the left side to the left.

top
Double

The amount to move the top upward.

right
Double

The amount to move the right side to the right.

bottom
Double

The amount to move the bottom down.

Returns

A region that is expanded by or has all of its subregions expanded by the specified values.

Applies to