Timage.autosize
- From: "Miko" <michel.salvagniac@xxxxxxx>
- Date: Sun, 12 Jun 2005 16:17:56 +0200
Hi,
I have a very simple application with a Timage and 3 checkboxes:
procedure TForm1.CBAutosizeClick(Sender: TObject);
begin
if CBAutosize.Checked then
Image1.AutoSize:=true else
Image1.AutoSize:=False;
Image1.Repaint;
end;
procedure TForm1.CBStretchClick(Sender: TObject);
begin
if CBStretch.Checked then
Image1.Stretch:=true else
Image1.Stretch:=False;
Image1.Repaint;
end;
procedure TForm1.CBPropClick(Sender: TObject);
begin
if CBProp.Checked then
Image1.Proportional:=true else
Image1.Proportional:=False;
Image1.Repaint;
end;
Once the image has been "Autosized", it's impossible to stretch or to make
proportional..
What i am doing wrong?
.
- Follow-Ups:
- Re: Timage.autosize
- From: Charles Appel
- Re: Timage.autosize
- Prev by Date: Re: Where is the profit?
- Next by Date: Re: How to rotate a bitmap?
- Previous by thread: Re: Win32/64 end?
- Next by thread: Re: Timage.autosize
- Index(es):
Relevant Pages
|