?? define.pas
字號:
unit Define;
interface
const
ABtnEnable : array[0..2,0..3] of Boolean = ((True, False,False,False),
(False,True ,False,True ),
(False,False,True ,True )
);
var
ColToSort : Integer;
bUp : Boolean;
type
TBtnStat = (bsNull, bsRunning, bsPaused);
TBtnType = (btStart,btPause,btGoon,btStop) ;
PCheckProxyParam = ^TCheckProxyParam;
TCheckProxyParam = record
IP : array[0..14] of Char;
Port : Integer;
end;
implementation
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -