tisstimp.inc

来自「TMS Component Pack Pro v4.2」· INC 代码 · 共 26 行

INC
26
字号
//************************************************************************************//
//  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 + =
减小字号Ctrl + -
显示快捷键?