📄 opcremovedgroupunit.pas
字号:
unit OPCRemovedGroupUnit;
interface
uses Windows,SysUtils,Dialogs,Classes,Axctrls;
type
TOPCGroupRemoved = class
public
oldGroupName:string;
oldGroupList:TList;
removedCount:integer;
oldServerHandle:longword;
constructor Create(const aName:string;oldHandle:longword;aList:TList);
end;
implementation
constructor TOPCGroupRemoved.Create(const aName:string;oldHandle:longword;aList:TList);
begin
oldGroupName:=aName;
oldServerHandle:=oldHandle;
oldGroupList:=aList;
removedCount:=0;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -