Skip to content
本页内容

BevelBottomDepth (属性)

返回或设置对 ThreeDFormat 对象使用棱台效果时的台底深度。可读/写 Single 类型。

示例

python
#此示例对第一张工作表的第一个形状使用棱台效果时的台底深度设置为30磅
def test():
    worksheet = Worksheets.Item(1)
    shape = worksheet.Shapes.Item(1)
    shape.ThreeD.Visible = msoTrue
    shape.ThreeD.BevelBottomDepth = 30
python
#本示例显示活动工作表中第二个形状使用棱台效果时的台底深度
def test():
    shapes = ActiveSheet.Shapes
    shape = shapes.Item(2)
    print(shape.ThreeD.BevelBottomDepth)