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

DomCR / ACadSharp / 25248972458

02 May 2026 09:32AM UTC coverage: 76.776% (-0.3%) from 77.1%
25248972458

Pull #1040

github

web-flow
Merge ad601da98 into a531bc13d
Pull Request #1040: TableEntity dwg support

8526 of 12075 branches covered (70.61%)

Branch coverage included in aggregate %.

900 of 1507 new or added lines in 29 files covered. (59.72%)

38 existing lines in 5 files now uncovered.

30731 of 39057 relevant lines covered (78.68%)

151411.99 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
using static ACadSharp.Objects.TableStyle;
4

5
namespace ACadSharp.Entities;
6

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

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

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

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

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

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