Delphi XE2의FireMonkey 시작하기(7) - TTExt 및 TFont

1148 단어 Delphi
TText도 Tshape(Tcontrol-> Tshape)에서 계승한다.
이와 유사한 Tlabel의 계승 서열은 Tcontrol-> Tstyled Control-> TTExt Control-> Tlabel이다.
TTExt의 주요 구성원:

{    }
Text          : string;     //    
Font          : TFont;      //  
Fill          : TBrush;     //    
HorzTextAlign : TTextAlign; //    
VertTextAlign : TTextAlign; //    
AutoSize      : Boolean;    //           
Stretch       : Boolean;    //         
WordWrap      : Boolean;    //    

{    }
Realign; //    
TFont(FMX.Types)의 주요 구성원:

{    }
Family : TFontName;   //  
Size   : Single;      //  
Style  : TFontStyles; //  

procedure TForm1.FormCreate(Sender: TObject);
begin
  Text1.Align := TAlignLayout.alClient;

  Text1.Text := ' Delphi XE2 ';

  Text1.Font.Family := '    ';
  Text1.Font.Size := 32;
  Text1.Font.Style := [TFontStyle.fsBold, TFontStyle.fsUnderline];

  Text1.Fill.Color := claRed;
  Text1.Stretch := True;
end;

좋은 웹페이지 즐겨찾기