opcremovedgroupunit.pas
来自「delphi2007 opcserver」· PAS 代码 · 共 28 行
PAS
28 行
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 + =
减小字号Ctrl + -
显示快捷键?