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

📄 tchartlistimp.inc

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

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

procedure TChartList.SetItems(index: integer; const Value: TFlxChart);
begin
  inherited Items[Index] := Value;
end;

function TChartList.Add(aRecord: TFlxChart):integer;
begin
  Result:=inherited Add(aRecord);
end;

procedure TChartList.Insert(Index: Integer; ARecord:TFlxChart);
begin
  inherited Insert(Index, ARecord);
end;

⌨️ 快捷键说明

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