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

DomCR / ACadSharp / 30615198462

31 Jul 2026 08:07AM UTC coverage: 76.786% (+1.0%) from 75.789%
30615198462

Pull #1151

github

web-flow
Merge 32a2e7d9f into 25e85fe17
Pull Request #1151: Dynamic parameters

9805 of 13766 branches covered (71.23%)

Branch coverage included in aggregate %.

2988 of 3445 new or added lines in 70 files covered. (86.73%)

80 existing lines in 13 files now uncovered.

34897 of 44450 relevant lines covered (78.51%)

142278.25 hits per line

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

87.5
/src/ACadSharp/Objects/Evaluations/BlockArrayAction.cs
1
using ACadSharp.Attributes;
2

3
namespace ACadSharp.Objects.Evaluations;
4

5
/// <summary>
6
/// Represents a BLOCKARRAYACTION object, used in AutoCAD to control a
7
/// array action in a dynamic block.
8
/// </summary>
9
/// <remarks>
10
/// Object name <see cref="DxfFileToken.ObjectBlockArrayAction"/> <br/>
11
/// Dxf class name <see cref="DxfSubclassMarker.BlockArrayAction"/>
12
/// </remarks>
13
[DxfName(DxfFileToken.ObjectBlockArrayAction)]
14
[DxfSubClass(DxfSubclassMarker.BlockArrayAction)]
15
public class BlockArrayAction : BlockAction
16
{
17
        public EvalConnection BaseConnection { get; set; } = new EvalConnection();
14✔
18

19
        [DxfCodeValue(141)]
20
        public double ColumnOffset { get; set; }
7✔
21

22
        public EvalConnection EndConnection { get; set; } = new EvalConnection();
14✔
23

24
        /// <inheritdoc/>
25
        public override string ObjectName => DxfFileToken.ObjectBlockArrayAction;
120✔
26

27
        [DxfCodeValue(140)]
28
        public double RowOffset { get; set; }
7✔
29

30
        /// <inheritdoc/>
NEW
31
        public override string SubclassMarker => DxfSubclassMarker.BlockArrayAction;
×
32

33
        public EvalConnection UpdatedBaseConnection { get; set; } = new EvalConnection();
14✔
34

35
        public EvalConnection UpdatedEndConnection { get; set; } = new EvalConnection();
14✔
36
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc