aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/RadioButtonTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/RadioButtonTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/RadioButtonTuple.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/WixToolset.Data/Tuples/RadioButtonTuple.cs b/src/WixToolset.Data/Tuples/RadioButtonTuple.cs
index 420577dc..2fea402a 100644
--- a/src/WixToolset.Data/Tuples/RadioButtonTuple.cs
+++ b/src/WixToolset.Data/Tuples/RadioButtonTuple.cs
@@ -53,55 +53,55 @@ namespace WixToolset.Data.Tuples
53 53
54 public string Property 54 public string Property
55 { 55 {
56 get => (string)this.Fields[(int)RadioButtonTupleFields.Property]?.Value; 56 get => (string)this.Fields[(int)RadioButtonTupleFields.Property];
57 set => this.Set((int)RadioButtonTupleFields.Property, value); 57 set => this.Set((int)RadioButtonTupleFields.Property, value);
58 } 58 }
59 59
60 public int Order 60 public int Order
61 { 61 {
62 get => (int)this.Fields[(int)RadioButtonTupleFields.Order]?.Value; 62 get => (int)this.Fields[(int)RadioButtonTupleFields.Order];
63 set => this.Set((int)RadioButtonTupleFields.Order, value); 63 set => this.Set((int)RadioButtonTupleFields.Order, value);
64 } 64 }
65 65
66 public string Value 66 public string Value
67 { 67 {
68 get => (string)this.Fields[(int)RadioButtonTupleFields.Value]?.Value; 68 get => (string)this.Fields[(int)RadioButtonTupleFields.Value];
69 set => this.Set((int)RadioButtonTupleFields.Value, value); 69 set => this.Set((int)RadioButtonTupleFields.Value, value);
70 } 70 }
71 71
72 public int X 72 public int X
73 { 73 {
74 get => (int)this.Fields[(int)RadioButtonTupleFields.X]?.Value; 74 get => (int)this.Fields[(int)RadioButtonTupleFields.X];
75 set => this.Set((int)RadioButtonTupleFields.X, value); 75 set => this.Set((int)RadioButtonTupleFields.X, value);
76 } 76 }
77 77
78 public int Y 78 public int Y
79 { 79 {
80 get => (int)this.Fields[(int)RadioButtonTupleFields.Y]?.Value; 80 get => (int)this.Fields[(int)RadioButtonTupleFields.Y];
81 set => this.Set((int)RadioButtonTupleFields.Y, value); 81 set => this.Set((int)RadioButtonTupleFields.Y, value);
82 } 82 }
83 83
84 public int Width 84 public int Width
85 { 85 {
86 get => (int)this.Fields[(int)RadioButtonTupleFields.Width]?.Value; 86 get => (int)this.Fields[(int)RadioButtonTupleFields.Width];
87 set => this.Set((int)RadioButtonTupleFields.Width, value); 87 set => this.Set((int)RadioButtonTupleFields.Width, value);
88 } 88 }
89 89
90 public int Height 90 public int Height
91 { 91 {
92 get => (int)this.Fields[(int)RadioButtonTupleFields.Height]?.Value; 92 get => (int)this.Fields[(int)RadioButtonTupleFields.Height];
93 set => this.Set((int)RadioButtonTupleFields.Height, value); 93 set => this.Set((int)RadioButtonTupleFields.Height, value);
94 } 94 }
95 95
96 public string Text 96 public string Text
97 { 97 {
98 get => (string)this.Fields[(int)RadioButtonTupleFields.Text]?.Value; 98 get => (string)this.Fields[(int)RadioButtonTupleFields.Text];
99 set => this.Set((int)RadioButtonTupleFields.Text, value); 99 set => this.Set((int)RadioButtonTupleFields.Text, value);
100 } 100 }
101 101
102 public string Help 102 public string Help
103 { 103 {
104 get => (string)this.Fields[(int)RadioButtonTupleFields.Help]?.Value; 104 get => (string)this.Fields[(int)RadioButtonTupleFields.Help];
105 set => this.Set((int)RadioButtonTupleFields.Help, value); 105 set => this.Set((int)RadioButtonTupleFields.Help, value);
106 } 106 }
107 } 107 }