Share via


SizeRequest Constructors

Definition

Overloads

SizeRequest(Size)

Creates a new SizeRequest with the specified request size.

SizeRequest(Size, Size)

Creates a new SizeRequest object that requests at least the size minimum, but preferably the size request.

SizeRequest(Size)

Creates a new SizeRequest with the specified request size.

public:
 SizeRequest(Microsoft::Maui::Graphics::Size request);
public SizeRequest (Microsoft.Maui.Graphics.Size request);
new Microsoft.Maui.SizeRequest : Microsoft.Maui.Graphics.Size -> Microsoft.Maui.SizeRequest
Public Sub New (request As Size)

Parameters

request
Size

The size of the request.

Applies to

SizeRequest(Size, Size)

Creates a new SizeRequest object that requests at least the size minimum, but preferably the size request.

public:
 SizeRequest(Microsoft::Maui::Graphics::Size request, Microsoft::Maui::Graphics::Size minimum);
public SizeRequest (Microsoft.Maui.Graphics.Size request, Microsoft.Maui.Graphics.Size minimum);
new Microsoft.Maui.SizeRequest : Microsoft.Maui.Graphics.Size * Microsoft.Maui.Graphics.Size -> Microsoft.Maui.SizeRequest
Public Sub New (request As Size, minimum As Size)

Parameters

request
Size

The size of the request.

minimum
Size

The minimum size for the request.

Applies to