將此實例傳送至 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。
文字大小正在測量。
被測量的文字。
線斷容器的寬度。