border_weight属性
border_weight属性
获取或设置图片边框线的粗细,以 pt 为单位。
例子
from aspose.cells import Workbook
from aspose.pydrawing import Color
# Instantiating a Workbook object
workbook = Workbook()
worksheet = workbook.worksheets[0]
# Adding a picture at the location of a cell whose row and column indices are 1 in the worksheet. It is "B2" cell
imgIndex = worksheet.pictures.add(1, 1, "example.jpeg")
# Get the inserted picture object
pic = worksheet.pictures[imgIndex]
# Set the border color of the picture
pic.border_line_color = Color.red
# Set the border width of the picture
pic.border_weight = 3.0
# Save the excel file.
workbook.save("result.xlsx")
定义:
@property
def border_weight(self):
...
@border_weight.setter
def border_weight(self, value):
...