PresetLightingSoftness 属性

       

返回或设置延伸光源效果的亮度。可读写。MsoPresetLightingSoftness 类型。

expression.PresetLightingSoftness

expression  必选。该表达式返回“应用于”列表中的对象之一。

示例

本示例指定了从左侧照亮 myDocument 中第一个形状。

Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes(1).ThreeD
    .Visible = True
    .PresetLightingSoftness = msoLightingBright
    .PresetLightingDirection = msoLightingLeft
End With