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

◆ BufferWidth

int System.Console.BufferWidth
staticgetset

Definition at line 287 of file Console.cs.

288 {
289 [UnsupportedOSPlatform("android")]
290 [UnsupportedOSPlatform("browser")]
291 [UnsupportedOSPlatform("ios")]
292 [UnsupportedOSPlatform("tvos")]
293 get
294 {
295 return ConsolePal.BufferWidth;
296 }
297 [SupportedOSPlatform("windows")]
298 set
299 {
300 ConsolePal.BufferWidth = value;
301 }
302 }