#鸿蒙学习大百科#如何设置Text组件的文本基线的偏移量?

如何设置Text组件的文本基线的偏移量?

HarmonyOS
2024-10-25 11:07:30
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
被窝终结者
Text('This is the text content with baselineOffset 0.')
  .baselineOffset(0)
  .fontSize(12)
  .border({ width: 1 })
  .padding(10)
  .width('100%')
  .margin(5)
Text('This is the text content with baselineOffset 30.')
  .baselineOffset(30)
  .fontSize(12)
  .border({ width: 1 })
  .padding(10)
  .width('100%')
  .margin(5)

Text('This is the text content with baselineOffset -20.')
  .baselineOffset(-20)
  .fontSize(12)
  .border({ width: 1 })
  .padding(10)
  .width('100%')
  .margin(5)

分享
微博
QQ
微信
回复
2024-10-25 17:28:34
相关问题
如何获取Scroll组件的当前滚动偏移量
1990浏览 • 1回复 待解决