将此实例传递给 TextService:GetTextBoundsAsync() 以测量文本的大小。
代码示例
TextService: Measuring text size
local TextService = game:GetService("TextService")
local params = Instance.new("GetTextBoundsParams")
params.Text = "hello world!"
params.Font = Font.new("rbxasset://fonts/families/GrenzeGotisch.json", Enum.FontWeight.Thin)
params.Size = 20
params.Width = 200
local size = TextService:GetTextBoundsAsync(params)
print("The size of the text is:", size)
概要
属性
被测量的文本的 Font。
被测量的文本的大小。
正在测量文本。
容器的宽度用于线路切割。