Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ WindowStyle

ProcessWindowStyle System.Diagnostics.ProcessStartInfo.WindowStyle
getset

Definition at line 159 of file ProcessStartInfo.cs.

160 {
161 get
162 {
163 return _windowStyle;
164 }
165 set
166 {
167 if (!Enum.IsDefined(typeof(ProcessWindowStyle), value))
168 {
169 throw new InvalidEnumArgumentException("value", (int)value, typeof(ProcessWindowStyle));
170 }
172 }
173 }