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

DomCR / ACadSharp / 13726099261

07 Mar 2025 05:34PM UTC coverage: 76.062% (-0.02%) from 76.08%
13726099261

push

github

DomCR
fix

5460 of 7879 branches covered (69.3%)

Branch coverage included in aggregate %.

21533 of 27609 relevant lines covered (77.99%)

75868.1 hits per line

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

57.14
/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; }
266✔
32

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

39
                /// <summary>
40
                /// If the group is selectable
41
                /// </summary>
42
                [DxfCodeValue(71)]
43
                public bool Selectable { get; set; }
266✔
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();
1,862✔
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