GetTextBoundsParams

顯示已棄用項目

*此內容是使用 AI(Beta 測試版)翻譯,可能含有錯誤。若要以英文檢視此頁面,請按一下這裡

未複製

將此實例傳送至 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

平行讀取

測量文字時的 Font。與文字對象的 TextLabel.FontFace 屬性相對應。

不要與 Enum.Font 混淺。這是您可以使用 Font.new() 創建的對象。

RichText

平行讀取

Size

平行讀取

被測量的文字大小。與 TextLabel.TextSize 屬性相對應。

Text

平行讀取

被測量的文字。

Width

平行讀取

容器的寬度用來分行。 預設值為 0,這表示沒有分行將被執行。 您可以將它設置為容器的寬度,您將在此輸入文字。

方法

活動