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

DomCR / ACadSharp / 30620456288

31 Jul 2026 09:34AM UTC coverage: 76.801% (+1.0%) from 75.789%
30620456288

Pull #1151

github

web-flow
Merge 0ffbbdb89 into 25e85fe17
Pull Request #1151: Dynamic parameters

9806 of 13766 branches covered (71.23%)

Branch coverage included in aggregate %.

2995 of 3452 new or added lines in 70 files covered. (86.76%)

74 existing lines in 12 files now uncovered.

34910 of 44457 relevant lines covered (78.53%)

142256.06 hits per line

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

80.0
/src/ACadSharp/Objects/Evaluations/BlockAlignmentGrip.cs
1
using ACadSharp.Attributes;
2

3
namespace ACadSharp.Objects.Evaluations;
4

5
/// <summary>
6
/// Represents a BLOCKALIGNMENTGRIP object.
7
/// </summary>
8
/// <remarks>
9
/// Object name <see cref="DxfFileToken.ObjectBlockAlignmentGrip"/> <br/>
10
/// Dxf class name <see cref="DxfSubclassMarker.BlockAlignmentGrip"/>
11
/// </remarks>
12
[DxfName(DxfFileToken.ObjectBlockAlignmentGrip)]
13
[DxfSubClass(DxfSubclassMarker.BlockAlignmentGrip)]
14
public class BlockAlignmentGrip : BlockGrip
15
{
16
        /// <summary>
17
        /// Gets or sets the alignment in the X direction.
18
        /// </summary>
19
        [DxfCodeValue(140)]
20
        public double AlignmentX { get; set; }
7✔
21

22
        /// <summary>
23
        /// Gets or sets the alignment in the Y direction.
24
        /// </summary>
25
        [DxfCodeValue(141)]
26
        public double AlignmentY { get; set; }
7✔
27

28
        /// <summary>
29
        /// Gets or sets the alignment in the Z direction.
30
        /// </summary>
31
        [DxfCodeValue(142)]
32
        public double AlignmentZ { get; set; }
7✔
33

34
        /// <inheritdoc/>
35
        public override string ObjectName => DxfFileToken.ObjectBlockAlignmentGrip;
120✔
36

37
        /// <inheritdoc/>
NEW
38
        public override string SubclassMarker => DxfSubclassMarker.BlockAlignmentGrip;
×
39
}
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