導(dǎo)入模塊
import measure from '@ohos.measure'
measure.measureText
measureText(options: MeasureOptions): number
計(jì)算指定文本單行布局下的寬度。
系統(tǒng)能力: SystemCapability.ArkUI.ArkUI.Full
參數(shù)名 | 類型 | 必填 | 說明 |
---|---|---|---|
options | MeasureOptions | 是 | 被計(jì)算文本描述信息。 |
返回值:
類型 | 說明 |
---|---|
number | 文本寬度。說明: 單位px。 |
示例:
import measure from '@ohos.measure' @Entry @Component struct Index { @State message: string = 'Hello World' @State textWidth : number = measure.measureText({ textContent: "Hello word", fontSize: '50px' }) build() { Row() { Column() { Text("The width of 'Hello World': " + this.textWidth) } .width('100%') } .height('100%') } }
MeasureOptions
被計(jì)算文本屬性。
系統(tǒng)能力: SystemCapability.ArkUI.ArkUI.Full
審核編輯 黃宇
-
ui
+關(guān)注
關(guān)注
0文章
204瀏覽量
21375 -
鴻蒙
+關(guān)注
關(guān)注
57文章
2351瀏覽量
42849
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論