⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tisstimp.inc

📁 TMS Component Pack Pro v4.2
💻 INC
字号:
//************************************************************************************//
//  File created automatically by GenerateRecords.xls                                 //
//  Modified by hand                                                            //
//************************************************************************************//

function TSST.GetItems(index: integer): TiSSTEntry;
begin
  Result := TiSSTEntry (inherited Items[Index]);
end;

procedure TSST.SetItems(index: integer; const Value: TiSSTEntry);
begin
  inherited Items[Index] := Pointer(Value);
end;

function TSST.Add(aRecord: TiSSTEntry):integer;
begin
  Result:=inherited Add(Pointer(aRecord));
end;

procedure TSST.Insert(Index: Integer; ARecord:TiSSTEntry);
begin
  inherited Insert(Index, Pointer(ARecord));
end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -