Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/FileFormats/IFileFormat.cs')
-rw-r--r--UVtools.Core/FileFormats/IFileFormat.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/UVtools.Core/FileFormats/IFileFormat.cs b/UVtools.Core/FileFormats/IFileFormat.cs
index c3a5885..f2ff326 100644
--- a/UVtools.Core/FileFormats/IFileFormat.cs
+++ b/UVtools.Core/FileFormats/IFileFormat.cs
@@ -95,6 +95,21 @@ namespace UVtools.Core.FileFormats
/// </summary>
uint ResolutionY { get; set; }
+ /// <summary>
+ /// Gets the size of display in millimeters
+ /// </summary>
+ SizeF Display { get; set; }
+
+ /// <summary>
+ /// Gets or sets the display width in millimeters
+ /// </summary>
+ float DisplayWidth { get; set; }
+
+ /// <summary>
+ /// Gets or sets the display height in millimeters
+ /// </summary>
+ float DisplayHeight { get; set; }
+
bool HaveAntiAliasing { get; }
/// <summary>