PathF.AppendRectangle Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| AppendRectangle(RectF, Boolean) | 
						 Appends a rectangle path using the specified rectangle bounds.  | 
        	
| AppendRectangle(Single, Single, Single, Single, Boolean) | 
						 Appends a rectangle path.  | 
        	
AppendRectangle(RectF, Boolean)
- Source:
 - PathF.cs
 
- Source:
 - PathF.cs
 
- Source:
 - PathF.cs
 
Appends a rectangle path using the specified rectangle bounds.
public void AppendRectangle(Microsoft.Maui.Graphics.RectF rect, bool includeLast = false);
	member this.AppendRectangle : Microsoft.Maui.Graphics.RectF * bool -> unit
	Public Sub AppendRectangle (rect As RectF, Optional includeLast As Boolean = false)
	Parameters
- rect
 - RectF
 
The rectangle bounds.
- includeLast
 - Boolean
 
Include a final duplicate line to the first point before closing.
Applies to
AppendRectangle(Single, Single, Single, Single, Boolean)
- Source:
 - PathF.cs
 
- Source:
 - PathF.cs
 
- Source:
 - PathF.cs
 
Appends a rectangle path.
public void AppendRectangle(float x, float y, float w, float h, bool includeLast = false);
	member this.AppendRectangle : single * single * single * single * bool -> unit
	Public Sub AppendRectangle (x As Single, y As Single, w As Single, h As Single, Optional includeLast As Boolean = false)
	Parameters
- x
 - Single
 
Left.
- y
 - Single
 
Top.
- w
 - Single
 
Width.
- h
 - Single
 
Height.
- includeLast
 - Boolean
 
Include a final duplicate line to the first point before closing.