diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/BBControlTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/BBControlTuple.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/BBControlTuple.cs b/src/WixToolset.Data/Tuples/BBControlTuple.cs index b9066f81..01a47097 100644 --- a/src/WixToolset.Data/Tuples/BBControlTuple.cs +++ b/src/WixToolset.Data/Tuples/BBControlTuple.cs | |||
@@ -71,31 +71,31 @@ namespace WixToolset.Data.Tuples | |||
71 | 71 | ||
72 | public string Billboard_ | 72 | public string Billboard_ |
73 | { | 73 | { |
74 | get => (string)this.Fields[(int)BBControlTupleFields.Billboard_]?.Value; | 74 | get => (string)this.Fields[(int)BBControlTupleFields.Billboard_]; |
75 | set => this.Set((int)BBControlTupleFields.Billboard_, value); | 75 | set => this.Set((int)BBControlTupleFields.Billboard_, value); |
76 | } | 76 | } |
77 | 77 | ||
78 | public string BBControl | 78 | public string BBControl |
79 | { | 79 | { |
80 | get => (string)this.Fields[(int)BBControlTupleFields.BBControl]?.Value; | 80 | get => (string)this.Fields[(int)BBControlTupleFields.BBControl]; |
81 | set => this.Set((int)BBControlTupleFields.BBControl, value); | 81 | set => this.Set((int)BBControlTupleFields.BBControl, value); |
82 | } | 82 | } |
83 | 83 | ||
84 | public string Type | 84 | public string Type |
85 | { | 85 | { |
86 | get => (string)this.Fields[(int)BBControlTupleFields.Type]?.Value; | 86 | get => (string)this.Fields[(int)BBControlTupleFields.Type]; |
87 | set => this.Set((int)BBControlTupleFields.Type, value); | 87 | set => this.Set((int)BBControlTupleFields.Type, value); |
88 | } | 88 | } |
89 | 89 | ||
90 | public int X | 90 | public int X |
91 | { | 91 | { |
92 | get => (int)this.Fields[(int)BBControlTupleFields.X]?.Value; | 92 | get => (int)this.Fields[(int)BBControlTupleFields.X]; |
93 | set => this.Set((int)BBControlTupleFields.X, value); | 93 | set => this.Set((int)BBControlTupleFields.X, value); |
94 | } | 94 | } |
95 | 95 | ||
96 | public int Y | 96 | public int Y |
97 | { | 97 | { |
98 | get => (int)this.Fields[(int)BBControlTupleFields.Y]?.Value; | 98 | get => (int)this.Fields[(int)BBControlTupleFields.Y]; |
99 | set => this.Set((int)BBControlTupleFields.Y, value); | 99 | set => this.Set((int)BBControlTupleFields.Y, value); |
100 | } | 100 | } |
101 | 101 | ||
@@ -107,7 +107,7 @@ namespace WixToolset.Data.Tuples | |||
107 | 107 | ||
108 | public int Height | 108 | public int Height |
109 | { | 109 | { |
110 | get => (int)this.Fields[(int)BBControlTupleFields.Height]?.Value; | 110 | get => (int)this.Fields[(int)BBControlTupleFields.Height]; |
111 | set => this.Set((int)BBControlTupleFields.Height, value); | 111 | set => this.Set((int)BBControlTupleFields.Height, value); |
112 | } | 112 | } |
113 | 113 | ||
@@ -167,13 +167,13 @@ namespace WixToolset.Data.Tuples | |||
167 | 167 | ||
168 | public string Text | 168 | public string Text |
169 | { | 169 | { |
170 | get => (string)this.Fields[(int)BBControlTupleFields.Text]?.Value; | 170 | get => (string)this.Fields[(int)BBControlTupleFields.Text]; |
171 | set => this.Set((int)BBControlTupleFields.Text, value); | 171 | set => this.Set((int)BBControlTupleFields.Text, value); |
172 | } | 172 | } |
173 | 173 | ||
174 | public string SourceFile | 174 | public string SourceFile |
175 | { | 175 | { |
176 | get => (string)this.Fields[(int)BBControlTupleFields.SourceFile]?.Value; | 176 | get => (string)this.Fields[(int)BBControlTupleFields.SourceFile]; |
177 | set => this.Set((int)BBControlTupleFields.SourceFile, value); | 177 | set => this.Set((int)BBControlTupleFields.SourceFile, value); |
178 | } | 178 | } |
179 | } | 179 | } |