📄 tfontrecordlistimp.inc
字号:
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Do not modify by hand //
//************************************************************************************//
function TFontRecordList.GetItems(index: integer): TFontRecord;
begin
Result := TFontRecord (inherited Items[Index]);
end;
procedure TFontRecordList.SetItems(index: integer; const Value: TFontRecord);
begin
inherited Items[Index] := Value;
end;
function TFontRecordList.Add(aRecord: TFontRecord):integer;
begin
Result:=inherited Add(aRecord);
end;
procedure TFontRecordList.Insert(Index: Integer; ARecord:TFontRecord);
begin
inherited Insert(Index, ARecord);
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -