📄 17.txt
字号:
分解颜色为RGB
To break an RGB color value into its components, use:
red = color Mod 256
green = (color \ 256) Mod 256
blue = color \ 256 \ 256
There are some system colors that have funny values like &H8000000F&. Unfortunately they don't work this way
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -