PresetGradientType property (Excel Graph)

Returns the preset gradient type for the specified fill. Read-only MsoPresetGradientType.

Syntax

expression.PresetGradientType

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

This property is read-only. Use the PresetGradient method to set the preset gradient type for the fill.

Example

This example changes the chart's preset gradient fill format from silver to gold.

With myChart.ChartArea.Fill 
 If .Type = msoFillGradient Then 
 If .GradientColorType = msoGradientPresetColors Then 
 If .PresetGradientType = msoGradientSilver Then 
 .PresetGradient .GradientStyle, _ 
 .GradientVariant, msoGradientGold 
 End If 
 End If 
 End If 
End With

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.