We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 873418f + dac4e1f commit 5662a4aCopy full SHA for 5662a4a
1 file changed
src/dotnetCampus.OpenXMLUnitConverter/EmuPoint.cs
@@ -18,6 +18,15 @@ public EmuPoint(Emu x, Emu y)
18
Y = y;
19
}
20
21
+ /// <summary>
22
+ /// 创建 <see cref="Emu"/> 表示的点
23
+ /// </summary>
24
+ /// <param name="xEmu">用EMU单位的 X 坐标</param>
25
+ /// <param name="yEmu">用EMU单位的 Y 坐标</param>
26
+ public EmuPoint(double xEmu, double yEmu) : this(new Emu(xEmu), new Emu(yEmu))
27
+ {
28
+ }
29
+
30
/// <summary>
31
/// 表示 X 坐标
32
/// </summary>
0 commit comments