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

DomCR / ACadSharp / 24894444075

24 Apr 2026 02:21PM UTC coverage: 76.677% (-0.4%) from 77.074%
24894444075

Pull #1040

github

web-flow
Merge d3b336a23 into d573f1f62
Pull Request #1040: TableEntity dwg support

8478 of 12009 branches covered (70.6%)

Branch coverage included in aggregate %.

629 of 1219 new or added lines in 20 files covered. (51.6%)

42 existing lines in 4 files now uncovered.

30514 of 38843 relevant lines covered (78.56%)

152154.19 hits per line

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

83.33
/src/ACadSharp/Entities/TableEntity.Column.cs
1
using ACadSharp.Attributes;
2
using System.Collections.Generic;
3

4
namespace ACadSharp.Entities;
5

6
public partial class TableEntity
7
{
8
        /// <summary>
9
        /// Represents a table column with a name, width, custom data, and style information.
10
        /// </summary>
11
        public class Column : ITableComponent
12
        {
13
                /// <inheritdoc/>
NEW
14
                public CellStyle CellStyle { get; set; }
×
15

16
                /// <inheritdoc/>
17
                public CellStyle CellStyleOverride { get; set; } = new();
5,664✔
18

19
                /// <inheritdoc/>
20
                [DxfCodeValue(91)]
21
                public int CustomData { get; set; }
1,696✔
22

23
                /// <inheritdoc/>
24
                public List<CustomDataEntry> CustomDataCollection { get; } = new();
3,968✔
25

26
                /// <summary>
27
                /// Gets or sets the name associated with this instance.
28
                /// </summary>
29
                [DxfCodeValue(300)]
30
                public string Name { get; set; } = string.Empty;
5,664✔
31

32
                /// <summary>
33
                /// Column width.
34
                /// </summary>
35
                [DxfCodeValue(142)]
36
                public double Width { get; set; } = 1.0;
8,031✔
37
        }
38
}
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