blockly >实用程序 >dom >getFastTextWidthWithSizeString

utils.dom.getFastTextWidthWithSizeString() 函数

使用比 getTextWidth 更快的方法获取文本元素的宽度。此方法要求我们事先知道文本元素的字体系列和大小。与 getTextWidth 类似,我们会缓存所计算的宽度。此方法与 getFastTextWidth 类似,但要求字体大小参数是一个字符串。

Signature:

export declare function getFastTextWidthWithSizeString(textElement: SVGTextElement, fontSize: string, fontWeight: string, fontFamily: string): number;

参数

参数 类型 说明
textElement SVGTextElement SVG“文本”元素。
fontSize 字符串 要使用的字体大小。
fontWeight 字符串 要使用的字体粗细。
fontFamily 字符串 要使用的字体系列。

返回

number

元素的宽度。