• 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/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/>
UNCOV
15
                public CellStyle CellStyle { get; set; }
×
16

17
                /// <inheritdoc/>
UNCOV
18
                public CellStyle CellStyleOverride { get; set; } = new();
×
19

20
                /// <inheritdoc/>
21
                [DxfCodeValue(91)]
UNCOV
22
                public int CustomData { get; set; }
×
23

24
                /// <inheritdoc/>
UNCOV
25
                public List<CustomDataEntry> CustomDataCollection { get; } = new();
×
26

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

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