GetTextBoundsParams
非推奨を表示
*このコンテンツは、ベータ版のAI(人工知能)を使用して翻訳されており、エラーが含まれている可能性があります。このページを英語で表示するには、 こちら をクリックしてください。
このインスタンスを 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
測定されているテキストの Font は、テキストオブジェクトの TextLabel.FontFace プロパティに一致します。
Datatype.Font.new() を使用して作成できるオブジェクトです。