• 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.BreakData.cs
1
using CSMath;
2
using System.Collections.Generic;
3

4
namespace ACadSharp.Entities;
5

6
public partial class TableEntity
7
{
8
        /// <summary>
9
        /// Represents the configuration data for handling table breaks, including spacing, flow direction, break options, and
10
        /// break segment details.
11
        /// </summary>
12
        /// <remarks>Use this class to specify how a table should be divided across breaks, such as pages or sections.
13
        /// The properties allow customization of break spacing, direction, and additional options that influence table layout
14
        /// behavior.</remarks>
15
        public class TableBreakData
16
        {
17
                /// <summary>
18
                /// Gets or sets the spacing between table breaks.
19
                /// </summary>
20
                public double BreakSpacing { get; set; }
×
21

22
                /// <summary>
23
                /// Gets or sets the break option flags that control how table breaks are handled.
24
                /// </summary>
UNCOV
25
                public BreakOptionFlags Flags { get; set; } = BreakOptionFlags.None;
×
26

27
                /// <summary>
28
                /// Gets or sets the direction in which the table flows across breaks.
29
                /// </summary>
30
                public BreakFlowDirection FlowDirection { get; set; }
×
31

32
                /// <summary>
33
                /// Gets or sets the collection of break heights and their positions.
34
                /// </summary>
UNCOV
35
                public List<BreakHeight> Heights { get; set; } = new List<BreakHeight>();
×
36

37
                /// <summary>
38
                /// Represents the height and insertion position of a table break segment.
39
                /// </summary>
40
                public struct BreakHeight
41
                {
42
                        /// <summary>
43
                        /// Gets or sets the height of the break segment.
44
                        /// </summary>
45
                        public double Height { get; set; }
×
46

47
                        /// <summary>
48
                        /// Gets or sets the position of the break segment.
49
                        /// </summary>
50
                        public XYZ Position { get; set; }
×
51
                }
52
        }
53
}
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