📄 hmstatusintf.pas
字号:
unit hmStatusIntf;
interface
type
IStatus = interface
['{64FF0760-9665-43D8-8A57-23A8D8A74F67}']
function AddWarningMsg(Msg: WideString): Boolean; safecall;
function AddInfomationMsg(Msg: WideString): Boolean; safecall;
function AddErrorMsg(Msg: WideString): Boolean; safecall;
function AddScriptMsg(CtlName:WideString;Msg: WideString): Boolean; safecall;
function LastMsg: WideString; safecall;
function ClearMsg: Boolean;
function GetActive: Boolean;
procedure SetActive(Value: Boolean);
property Active: Boolean read GetActive write SetActive;
end;
implementation
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -