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

DomCR / ACadSharp / 12905761471

22 Jan 2025 10:03AM UTC coverage: 2.0% (-74.0%) from 75.963%
12905761471

push

github

DomCR
version 1.0.6

104 of 7676 branches covered (1.35%)

Branch coverage included in aggregate %.

590 of 27024 relevant lines covered (2.18%)

5.13 hits per line

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

0.0
/src/ACadSharp/Objects/Group.cs
1
using ACadSharp.Attributes;
2
using ACadSharp.Entities;
3
using System.Collections.Generic;
4

5
namespace ACadSharp.Objects
6
{
7
        /// <summary>
8
        /// Represents a <see cref="Group"/> object.
9
        /// </summary>
10
        /// <remarks>
11
        /// Object name <see cref="DxfFileToken.TableGroup"/> <br/>
12
        /// Dxf class name <see cref="DxfSubclassMarker.Group"/>
13
        /// </remarks>
14
        [DxfName(DxfFileToken.TableGroup)]
15
        [DxfSubClass(DxfSubclassMarker.Group)]
16
        public class Group : NonGraphicalObject
17
        {
18
                /// <inheritdoc/>
19
                public override ObjectType ObjectType => ObjectType.GROUP;
×
20

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

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

27
                /// <summary>
28
                /// Group description
29
                /// </summary>
30
                [DxfCodeValue(300)]
31
                public string Description { get; set; }
×
32

33
                /// <summary>
34
                /// If the group has an automatic generated name
35
                /// </summary>
36
                [DxfCodeValue(71)]
37
                public bool IsUnnamed { get; set; }
×
38

39
                /// <summary>
40
                /// If the group is selectable
41
                /// </summary>
42
                [DxfCodeValue(71)]
43
                public bool Selectable { get; set; }
×
44

45
                //340        Hard-pointer handle to entity in group(one entry per object)
46

47
                /// <summary>
48
                /// Entities in this group
49
                /// </summary>
50
                public Dictionary<ulong, Entity> Entities { get; set; } = new();
×
51
        }
52
}
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