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

DomCR / ACadSharp / 18709888830

22 Oct 2025 08:18AM UTC coverage: 78.038% (+0.1%) from 77.923%
18709888830

Pull #831

github

web-flow
Merge 9e240c894 into f84cb1d2a
Pull Request #831: Table entity refactor

7165 of 9974 branches covered (71.84%)

Branch coverage included in aggregate %.

409 of 472 new or added lines in 13 files covered. (86.65%)

7 existing lines in 4 files now uncovered.

27036 of 33852 relevant lines covered (79.87%)

108431.63 hits per line

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

40.0
/src/ACadSharp/Objects/TableContent.cs
1
using ACadSharp.Attributes;
2
using System.Collections.Generic;
3
using static ACadSharp.Entities.TableEntity;
4

5
namespace ACadSharp.Objects
6
{
7
        /// <summary>
8
        /// Represents a <see cref="TableContent"/> object.
9
        /// </summary>
10
        /// <remarks>
11
        /// Object name <see cref="DxfFileToken.ObjectTableContent"/> <br/>
12
        /// Dxf class name <see cref="DxfSubclassMarker.TableLinkedTableData"/>
13
        /// </remarks>
14
        [DxfName(DxfFileToken.ObjectTableContent)]
15
        [DxfSubClass(DxfSubclassMarker.TableLinkedTableData)]
16
        public class TableContent : LinkedData
17
        {
18
                /// <inheritdoc/>
19
                public override ObjectType ObjectType { get { return ObjectType.UNLISTED; } }
×
20

21
                /// <inheritdoc/>
UNCOV
22
                public override string ObjectName => DxfFileToken.ObjectTableContent;
×
23

24
                /// <inheritdoc/>
NEW
25
                public override string SubclassMarker => DxfSubclassMarker.TableLinkedTableData;
×
26

27
                public CellStyle CellStyleOverride { get; set; } = new();
1,247✔
28

29
                public List<CellRange> MergedCellRanges { get; set; } = new();
1,304✔
30
        }
31
}
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