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

DomCR / ACadSharp / 25257777259

02 May 2026 05:35PM UTC coverage: 76.965% (-0.1%) from 77.076%
25257777259

push

github

web-flow
Merge pull request #1040 from DomCR/issue/1000_tableentity-DwgWriter

TableEntity dwg support

8557 of 12075 branches covered (70.87%)

Branch coverage included in aggregate %.

960 of 1507 new or added lines in 29 files covered. (63.7%)

38 existing lines in 5 files now uncovered.

30799 of 39060 relevant lines covered (78.85%)

152916.22 hits per line

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

33.33
/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>
NEW
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>
25
                public BreakOptionFlags Flags { get; set; } = BreakOptionFlags.None;
702✔
26

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

32
                /// <summary>
33
                /// Gets or sets the collection of break heights and their positions.
34
                /// </summary>
35
                public List<BreakHeight> Heights { get; set; } = new List<BreakHeight>();
702✔
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>
NEW
45
                        public double Height { get; set; }
×
46

47
                        /// <summary>
48
                        /// Gets or sets the position of the break segment.
49
                        /// </summary>
NEW
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