label WordWrap


procedure TForm1.FormCreate(Sender: TObject);
begin
    Label1.AutoSize := False;
    Label1.WordWrap := True;
    Label1.Text := 'This is my caption that I would like to be wrappedThis is my caption that I would like to be wrapped';
    Label1.Width := 100;
    Label1.AutoSize := True;
end;




posted @ 2014-07-29 16:56  XE2011  阅读(179)  评论(0编辑  收藏  举报