• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DomCR / ACadSharp / 29143042407

11 Jul 2026 06:34AM UTC coverage: 2.912% (-73.0%) from 75.918%
29143042407

push

github

web-flow
Merge pull request #1146 from ilCosmico/acds-read-payload-anchor

Read the AcDs payload area offset from the data segment header

264 of 12999 branches covered (2.03%)

Branch coverage included in aggregate %.

0 of 30 new or added lines in 1 file covered. (0.0%)

31243 existing lines in 465 files now uncovered.

1337 of 41984 relevant lines covered (3.18%)

5.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/ACadSharp/Objects/TableStyle.ContentFormat.cs
1
using ACadSharp.Attributes;
2
using ACadSharp.Tables;
3

4
namespace ACadSharp.Objects;
5

6
public partial class TableStyle
7
{
8
        /// <summary>
9
        /// Represents the content format settings for a table cell in AutoCAD. This class encapsulates various properties that define how the content of a cell is formatted, including alignment, color, rotation, scale, text style, and value formatting.
10
        /// </summary>
11
        public class ContentFormat
12
        {
13
                /// <summary>
14
                /// Gets or sets the alignment code for the cell content.
15
                /// </summary>
16
                /// <remarks>
17
                /// This is a bit-coded value that defines the horizontal and vertical alignment
18
                /// of the content within the cell.
19
                /// </remarks>
20
                [DxfCodeValue(94)]
UNCOV
21
                public int Alignment { get; set; }
×
22

23
                /// <summary>
24
                /// Gets or sets the content color.
25
                /// </summary>
26
                [DxfCodeValue(62)]
UNCOV
27
                public Color Color { get; set; }
×
28

29
                /// <summary>
30
                /// Gets or sets a value indicating whether this content format contains data.
31
                /// </summary>
32
                [DxfCodeValue(170)]
UNCOV
33
                public bool HasData { get; set; }
×
34

35
                /// <summary>
36
                /// Gets or sets the property flags for the content format.
37
                /// </summary>
38
                [DxfCodeValue(90)]
UNCOV
39
                public int PropertyFlags { get; set; }
×
40

41
                /// <summary>
42
                /// Gets or sets the property override flags for the cell style.
43
                /// </summary>
44
                [DxfCodeValue(91)]
UNCOV
45
                public CellStylePropertyFlags PropertyOverrideFlags { get; set; }
×
46

47
                /// <summary>
48
                /// Gets or sets the rotation angle of the content.
49
                /// </summary>
50
                [DxfCodeValue(DxfReferenceType.IsAngle, 40)]
UNCOV
51
                public double Rotation { get; set; }
×
52

53
                /// <summary>
54
                /// Gets or sets the scale applied to the content.
55
                /// </summary>
56
                [DxfCodeValue(144)]
UNCOV
57
                public double Scale { get; set; }
×
58

59
                /// <summary>
60
                /// Gets or sets the text height for the content.
61
                /// </summary>
62
                [DxfCodeValue(140)]
UNCOV
63
                public double TextHeight { get; set; }
×
64

65
                /// <summary>
66
                /// Gets or sets the text style used by the content.
67
                /// </summary>
68
                //[DxfCodeValue(DxfReferenceType.Handle, 340)]
69
                [DxfCodeValue(DxfReferenceType.Name, 7)]
UNCOV
70
                public TextStyle TextStyle { get; set; }
×
71

72
                /// <summary>
73
                /// Gets or sets the value data type.
74
                /// </summary>
75
                [DxfCodeValue(92)]
UNCOV
76
                public int ValueDataType { get; set; }
×
77

78
                /// <summary>
79
                /// Gets or sets the value format string.
80
                /// </summary>
81
                [DxfCodeValue(300)]
UNCOV
82
                public string ValueFormatString { get; set; }
×
83

84
                /// <summary>
85
                /// Gets or sets the value unit type.
86
                /// </summary>
87
                [DxfCodeValue(93)]
UNCOV
88
                public int ValueUnitType { get; set; }
×
89
        }
90
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc