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

DomCR / ACadSharp / 17737836230

15 Sep 2025 03:12PM UTC coverage: 2.092% (-76.2%) from 78.245%
17737836230

push

github

web-flow
Merge pull request #790 from DomCR/addflag-refactor

addflag refactor

141 of 9225 branches covered (1.53%)

Branch coverage included in aggregate %.

0 of 93 new or added lines in 10 files covered. (0.0%)

24910 existing lines in 372 files now uncovered.

724 of 32119 relevant lines covered (2.25%)

5.76 hits per line

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

0.0
/src/ACadSharp/Objects/ImageDefinitionReactor.cs
1
using ACadSharp.Attributes;
2
using System;
3

4
namespace ACadSharp.Objects
5
{
6
        /// <summary>
7
        /// Represents a <see cref="ImageDefinitionReactor"/> object.
8
        /// </summary>
9
        /// <remarks>
10
        /// Object name <see cref="DxfFileToken.ObjectImageDefinitionReactor"/> <br/>
11
        /// Dxf class name <see cref="DxfSubclassMarker.RasterImageDefReactor"/>
12
        /// </remarks>
13
        [DxfName(DxfFileToken.ObjectImageDefinitionReactor)]
14
        [DxfSubClass(DxfSubclassMarker.RasterImageDefReactor)]
15
        [Obsolete("This object doesn't seem to be needed for any kind of app.")]
16
        public class ImageDefinitionReactor : NonGraphicalObject
17
        {
18
                /// <inheritdoc/>
19
                public override ObjectType ObjectType => ObjectType.UNLISTED;
×
20

21
                /// <inheritdoc/>
22
                public override string ObjectName => DxfFileToken.ObjectImageDefinitionReactor;
×
23

24
                /// <inheritdoc/>
25
                public override string SubclassMarker => DxfSubclassMarker.RasterImageDefReactor;
×
26

27
                /// <summary>
28
                /// Class version 2.
29
                /// </summary>
30
                [DxfCodeValue(90)]
UNCOV
31
                public int ClassVersion { get; set; }
×
32

33
                /// <summary>
34
                /// Object ID for associated image object.
35
                /// </summary>
36
                [DxfCodeValue(DxfReferenceType.Handle, 330)]
37
                public ImageDefinition Definition { get; set; }
×
38

UNCOV
39
                internal ImageDefinitionReactor() { }
×
40

41
                internal ImageDefinitionReactor(ImageDefinition definition)
×
42
                {
×
43
                        this.Definition = definition;
×
44
                }
×
45
        }
46
}
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