We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ddb6e5 commit ca483a4Copy full SHA for ca483a4
src/ACadSharp/Tables/TextStyle.cs
@@ -63,7 +63,7 @@ public class TextStyle : TableEntry
63
/// Last height used
64
/// </summary>
65
[DxfCodeValue(42)]
66
- public double LastHeight { get; set; }
+ public double LastHeight { get; set; } = 2.5;
67
68
/// <summary>
69
/// Specifies the oblique angle of the object.
@@ -94,7 +94,10 @@ public class TextStyle : TableEntry
94
internal TextStyle() : base() { }
95
96
/// <inheritdoc/>
97
- public TextStyle(string name) : base(name) { }
+ public TextStyle(string name) : base(name)
98
+ {
99
+ this.Flags = StyleFlags.Referenced;
100
+ }
101
}
102
103
0 commit comments