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

DomCR / ACadSharp / 24892111562

24 Apr 2026 01:29PM UTC coverage: 76.823% (-0.3%) from 77.074%
24892111562

Pull #1040

github

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

8479 of 11987 branches covered (70.73%)

Branch coverage included in aggregate %.

594 of 1121 new or added lines in 18 files covered. (52.99%)

42 existing lines in 4 files now uncovered.

30521 of 38779 relevant lines covered (78.7%)

152398.97 hits per line

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

83.33
/src/ACadSharp/Entities/TableEntity.Row.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 row with a collection of cells, height, custom data, and style information.
10
        /// </summary>
11
        public class Row : ITableComponent
12
        {
13
                /// <summary>
14
                /// Gets or sets the collection of cells contained in the current object.
15
                /// </summary>
16
                public List<Cell> Cells { get; set; } = new();
19,398✔
17

18
                /// <inheritdoc/>
NEW
19
                public CellStyle CellStyle { get; set; }
×
20

21
                /// <inheritdoc/>
22
                public CellStyle CellStyleOverride { get; set; } = new();
7,324✔
23

24
                /// <inheritdoc/>
25
                [DxfCodeValue(90)]
26
                public int CustomData { get; set; }
2,068✔
27

28
                /// <inheritdoc/>
29
                public List<CustomDataEntry> CustomDataCollection { get; } = new();
5,256✔
30

31
                /// <summary>
32
                /// Row height.
33
                /// </summary>
34
                [DxfCodeValue(141)]
35
                public double Height { get; set; } = 1.0;
10,448✔
36
        }
37
}
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