# 文本类 class.text

继承自 面板类

# 属性

  • 构造器

  • 以下属性只有在构造时填入 在此之后只读不写

名字 类型 说明
text string 初始化文本内容
align string 对齐方式 参照下面对照表
font_size number 字体大小 从 1~25
color integer 文本颜色 16 进制整数 ARGB

对齐方式的对照表

字符串 说明
auto_newline 自动换行
auto_size 自适应宽高
auto_width 自适应宽
auto_height 自适应高
topleft 左上
top
topright 右上
left
center 居中
right
bottomleft 左下
bottom
bottomright 右下

# 方法

# set_text

设置文本

# 参数

名字 类型 说明
text string 文本内容
    text:set_text(text)
1

# set_color

设置颜色

# 参数

名字 类型 说明
color integer 16 进制颜色 ARGB
    text:set_color(color)
1