14 lines
265 B
ObjectPascal
14 lines
265 B
ObjectPascal
program StretchGraphicExample;
|
|
|
|
uses
|
|
Forms,
|
|
StretchGraphicDemoMain in 'StretchGraphicDemoMain.pas' {StretchDemoForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TStretchDemoForm, StretchDemoForm);
|
|
Application.Run;
|
|
end.
|