導入模塊
import measure from '@ohos.measure'
measure.measureText
measureText(options: MeasureOptions): number
計算指定文本單行布局下的寬度。
系統能力: SystemCapability.ArkUI.ArkUI.Full
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
options | MeasureOptions | 是 | 被計算文本描述信息。 |
返回值:
類型 | 說明 |
---|---|
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
被計算文本屬性。
系統能力: SystemCapability.ArkUI.ArkUI.Full
審核編輯 黃宇
-
ui
+關注
關注
0文章
204瀏覽量
21376 -
鴻蒙
+關注
關注
57文章
2352瀏覽量
42858
發布評論請先 登錄
相關推薦
評論