博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Delphi XE2 之 FireMonkey 入门(7) - TText 与 TFont
阅读量:6255 次
发布时间:2019-06-22

本文共 847 字,大约阅读时间需要 2 分钟。

TText 也是从 TShape(TControl -> TShape)继承;
而与之类似的 TLabel 的继承序列是 TControl -> TStyledControl -> TTextControl -> 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;

转载地址:http://ddnsa.baihongyu.com/

你可能感兴趣的文章
C#设计模式之十一享元模式(Flyweight Pattern)【结构型】
查看>>
基于zookeeper简单实现分布式锁
查看>>
Makefile:160: recipe for target 'all' failed (Ubuntu 16.06 + Opencv3.2)解决办法
查看>>
a WebSite for MapXtreme2005 Crack
查看>>
几种函数调用方式
查看>>
【MySQL】MySQL 常用语法之锁表与解锁表
查看>>
【142】阿蛮歌霸使用技巧
查看>>
HTTP 请求报文 响应报文
查看>>
[转载] 程序员必看:请不要做浮躁的人 24法则
查看>>
JavaWeb_JavaEE_命名规则
查看>>
HDU 4010 Query on The Trees
查看>>
[PAL规范]SAP HANA PAL 数据处理四分位间距检测Inter-quartile Range Test编程规范IQRTEST...
查看>>
[HDU 1317]XYZZY[SPFA变形][最长路]
查看>>
Skip list--reference wiki
查看>>
解决Asp输出乱码问题
查看>>
1941设置站点模板,一生珍藏,所有玩具
查看>>
程序员面试题:问谁养蛇?
查看>>
黑马程序猿_try-catch-finally
查看>>
Atitit.android webview h5运行环境总结
查看>>
腾讯与唯品会笔试面试经历
查看>>