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;