中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何通过代码来控制文本的选中已经选中的位置?
微信扫码分享
@State start: number = 0 @State end: number = 1 build() { Column() { Text("Hello HarmonyOS") .fontSize(12) .border({ width: 1 }) .maxLines(2) .lineHeight(20) .width(260) .selection(this.start, this.end) .copyOption(CopyOptions.InApp) Button("选中").onClick(() => { this.end++ }) }.width("100%") .height("100%") .justifyContent(FlexAlign.Center) }