My default console width is 80, but when I look into HKCU\Console
there isn't a name that has this value. Only one that has supposedly to do with with is: WindowSize
but it has value of 0x190050, that is dec: 1638480. Do the last two digits of it represent value I'm searching for ?
相关问题
- Get image width height javascript
- Get the size of an element when inside a display:n
- redirect Javascript syntax errors and console.log
- width equal to dynamic height square [duplicate]
- C# application that can be run from console but do
相关文章
- How do I get to see DbgPrint output from my kernel
- How can one batch file get the exit code of anothe
- How to know that Process has crashed
- How to add negative filter in network tab of Chrom
- How do I redirect a javaw.exe console output to a
- can't debug small program on eclipse helios cd
- Set InstallPath registry key using Visual Studio S
- SSRS tablix column CanGrow property for width?
In HKCU\Console
0x19 = 25
0x50 = 80
So this is 25x80
In decimal, it's rows times 65,536 plus columns.
(25 * 65536) + 80 = 1638480
Documentation is here.