• 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/MText.TextColumnData.cs
1
using ACadSharp.Attributes;
2
using System.Collections.Generic;
3

4
namespace ACadSharp.Entities
5
{
6
        public partial class MText
7
        {
8
                public class TextColumnData
9
                {
10
                        /// <summary>
11
                        /// Text column type
12
                        /// </summary>
13
                        [DxfCodeValue(71)]
UNCOV
14
                        public ColumnType ColumnType { get; set; } = ColumnType.NoColumns;
×
15

16
                        /// <summary>
17
                        /// Number of columns
18
                        /// </summary>
19
                        [DxfCodeValue(72)]
UNCOV
20
                        public int ColumnCount { get; set; }
×
21

22
                        /// <summary>
23
                        /// Gets or sets a value indicating whether flow is reversed
24
                        /// </summary>
25
                        [DxfCodeValue(74)]
UNCOV
26
                        public bool FlowReversed { get; set; }
×
27

28
                        /// <summary>
29
                        /// Gets or sets a value indicating whether height is automatic
30
                        /// </summary>
31
                        [DxfCodeValue(73)]
UNCOV
32
                        public bool AutoHeight { get; set; }
×
33

34
                        /// <summary>
35
                        /// Width of the column.
36
                        /// </summary>
37
                        [DxfCodeValue(44)]
UNCOV
38
                        public double Width { get; set; }
×
39

40
                        /// <summary>
41
                        /// Column gutter.
42
                        /// </summary>
43
                        [DxfCodeValue(45)]
UNCOV
44
                        public double Gutter { get; set; }
×
45

46
                        /// <summary>
47
                        /// Column heights.
48
                        /// </summary>
49
                        [DxfCodeValue(46)]
UNCOV
50
                        public List<double> Heights { get; } = new List<double>();
×
51

52
                        public TextColumnData Clone()
UNCOV
53
                        {
×
UNCOV
54
                                return this.MemberwiseClone() as TextColumnData;
×
UNCOV
55
                        }
×
56
                }
57
        }
58
}
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