# 边框设置
设置组件边框样式。
说明:
从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
# 属性
| 名称 | 参数类型 | 描述 | 
|---|---|---|
| border | { width?: Length, color?: ResourceColor, radius?: Length, style?: BorderStyle } | 统一边框样式设置接口。 | 
| borderStyle | BorderStyle | 设置元素的边框样式。 默认值:BorderStyle.Solid | 
| borderWidth | Length | 设置元素的边框宽度。 | 
| borderColor | ResourceColor | 设置元素的边框颜色。 | 
| borderRadius | Length | 设置元素的边框圆角半径。 | 
# 示例
// xxx.ets
@Entry
@Component
struct BorderExample {
  build() {
    Flex({ justifyContent: FlexAlign.SpaceAround, alignItems: ItemAlign.Center }) {
      // 线段
      Text('dashed')
        .borderStyle(BorderStyle.Dashed).borderWidth(5).borderColor(0xAFEEEE).borderRadius(10)
        .width(120).height(120).textAlign(TextAlign.Center).fontSize(16)
      // 点线
      Text('dotted')
        .border({ width: 5, color: 0x317AF7, radius: 10, style: BorderStyle.Dotted })
        .width(120).height(120).textAlign(TextAlign.Center).fontSize(16)
    }.width('100%').height(150)
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17