Fixed: Page.Size should use points instead of inches (API consistency)

This commit is contained in:
MarcinZiabek
2022-11-01 12:55:13 +01:00
parent 7bce01d6e6
commit d1cd7b06db
+1 -1
View File
@@ -12,7 +12,7 @@ namespace QuestPDF.Fluent
#region Size
public void Size(float width, float height, Unit unit = Unit.Inch)
public void Size(float width, float height, Unit unit = Unit.Point)
{
var pageSize = new PageSize(width, height, unit);