tbaserowcolrecordlistimp.inc
来自「DELPHI界面增强控件,非常好,里面有显示GIF的图片控件,更美观的下拉框控件」· INC 代码 · 共 26 行
INC
26 行
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Do not modify by hand //
//************************************************************************************//
function TBaseRowColRecordList.GetItems(index: integer): TBaseRowColRecord;
begin
Result := TBaseRowColRecord (inherited Items[Index]);
end;
procedure TBaseRowColRecordList.SetItems(index: integer; const Value: TBaseRowColRecord);
begin
inherited Items[Index] := Value;
end;
function TBaseRowColRecordList.Add(aRecord: TBaseRowColRecord):integer;
begin
Result:=inherited Add(aRecord);
end;
procedure TBaseRowColRecordList.Insert(Index: Integer; ARecord:TBaseRowColRecord);
begin
inherited Insert(Index, ARecord);
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?