• 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/RasterVariables.cs
1
using ACadSharp.Attributes;
2
using ACadSharp.Types.Units;
3

4
namespace ACadSharp.Objects
5
{
6
        /// <summary>
7
        /// Represents a <see cref="RasterVariables"/> object.
8
        /// </summary>
9
        /// <remarks>
10
        /// Object name <see cref="DxfFileToken.ObjectRasterVariables"/> <br/>
11
        /// Dxf class name <see cref="DxfSubclassMarker.RasterVariables"/>
12
        /// </remarks>
13
        [DxfName(DxfFileToken.ObjectRasterVariables)]
14
        [DxfSubClass(DxfSubclassMarker.RasterVariables)]
15
        public class RasterVariables : NonGraphicalObject
16
        {
17
                /// <summary>
18
                /// Class version 0.
19
                /// </summary>
20
                [DxfCodeValue(90)]
UNCOV
21
                public int ClassVersion { get; internal set; }
×
22

23
                /// <summary>
24
                /// Gets or sets the image display quality (screen only).
25
                /// </summary>
26
                [DxfCodeValue(71)]
UNCOV
27
                public ImageDisplayQuality DisplayQuality { get; set; } = ImageDisplayQuality.High;
×
28

29
                /// <summary>
30
                /// Gets or sets if the image frame is shown.
31
                /// </summary>
32
                [DxfCodeValue(70)]
UNCOV
33
                public bool IsDisplayFrameShown { get; set; }
×
34

35
                /// <inheritdoc/>
UNCOV
36
                public override string ObjectName => DxfFileToken.ObjectRasterVariables;
×
37

38
                /// <inheritdoc/>
UNCOV
39
                public override string SubclassMarker => DxfSubclassMarker.RasterVariables;
×
40

41
                /// <summary>
42
                /// AutoCAD units for inserting images. <br/>
43
                /// This is what one AutoCAD unit is equal to for the purpose of inserting and scaling images with an associated resolution.
44
                /// </summary>
45
                [DxfCodeValue(92)]
UNCOV
46
                public ImageUnits Units { get; set; }
×
47

48
                /// <inheritdoc/>
UNCOV
49
                public RasterVariables() : base()
×
UNCOV
50
                {
×
UNCOV
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