📄 iplotpackreg.pas
字号:
{$I iInclude.inc}
{$ifdef iVCL}unit iPlotPackReg;{$endif}
{$ifdef iCLX}unit QiPlotPackReg;{$endif}
interface
uses
{$I iIncludeUses.inc}
{$IFDEF iVCL}{$ENDIF}
{$IFDEF iCLX}{$ENDIF}
{$ifdef iVCL}
iPlot,
iScope,
iXYPlot;
{$endif}
{$ifdef iCLX}
QiPlot,
QiScope,
QiXYPlot;
{$endif}
procedure Register;
implementation
//****************************************************************************************************************************************************
procedure Register;
begin
RegisterComponents('Iocomp Plot', [TiPlot]);
RegisterComponents('Iocomp Plot', [TiScope]);
RegisterComponents('Iocomp Plot', [TiXYPlot]);
end;
//****************************************************************************************************************************************************
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -