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

DomCR / ACadSharp / 23434374406

23 Mar 2026 11:10AM UTC coverage: 76.713% (+0.1%) from 76.575%
23434374406

Pull #1005

github

web-flow
Merge bf7f3beb3 into b11db589e
Pull Request #1005: Issue-999 remove cellvalue

8365 of 11840 branches covered (70.65%)

Branch coverage included in aggregate %.

129 of 155 new or added lines in 9 files covered. (83.23%)

31 existing lines in 5 files now uncovered.

30088 of 38286 relevant lines covered (78.59%)

149435.31 hits per line

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

0.0
/src/ACadSharp/Entities/TableEntity.CellValue.cs
1
using ACadSharp.Attributes;
2
using System;
3

4
namespace ACadSharp.Entities
5
{
6
        public partial class TableEntity
7
        {
8
                [Obsolete("Replace for ACadSharp.CadValue", true)]
9
                public class CellValue
10
                {
11
                        [DxfCodeValue(90)]
UNCOV
12
                        public CellValueType ValueType { get; set; }
×
13

14
                        [DxfCodeValue(94)]
UNCOV
15
                        public ValueUnitType Units { get; set; }
×
16

17
                        [DxfCodeValue(93)]
UNCOV
18
                        public int Flags { get; set; }
×
19

20
                        public bool IsEmpty
21
                        {
22
                                get
UNCOV
23
                                {
×
UNCOV
24
                                        return (this.Flags & 1) != 0;
×
UNCOV
25
                                }
×
26
                                set
27
                                {
×
28
                                        if (value)
×
29
                                        {
×
30
                                                this.Flags |= 0b1;
×
31
                                        }
×
32
                                        else
33
                                        {
×
34
                                                this.Flags &= ~0b1;
×
35
                                        }
×
36
                                }
×
37
                        }
38

39
                        /// <summary>
40
                        /// Text string in a cell.
41
                        /// </summary>
42
                        [DxfCodeValue(1)]
UNCOV
43
                        public string Text { get; set; }
×
44

45
                        [DxfCodeValue(300)]
UNCOV
46
                        public string Format { get; set; }
×
47

48
                        [DxfCodeValue(302)]
UNCOV
49
                        public string FormattedValue { get; set; }
×
50

UNCOV
51
                        public object Value { get; set; }
×
52

53
                        /// <inheritdoc/>
54
                        public override string ToString()
55
                        {
×
56
                                return this.Value.ToString();
×
57
                        }
×
58
                }
59
        }
60
}
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