Skip to content

Latest commit

 

History

History
86 lines (66 loc) · 2.93 KB

Excel.FillFormat.md

File metadata and controls

86 lines (66 loc) · 2.93 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
FillFormat object (Excel)
vbaxl10.chm115000
vbaxl10.chm115000
Excel.FillFormat
b602e09e-97ab-bfbe-1796-bc44ebb7dc28
03/29/2019
medium

FillFormat object (Excel)

Represents fill formatting for a shape.

Remarks

A shape can have a solid, gradient, texture, pattern, picture, or semi-transparent fill.

Many of the properties of the FillFormat object are read-only. To set one of these properties, you have to apply the corresponding method.

Example

Use the Fill property of the Shape object to return a FillFormat object. The following example adds a rectangle to myDocument, and then sets the gradient and color for the rectangle's fill.

Set myDocument = Worksheets(1) 
With myDocument.Shapes.AddShape(msoShapeRectangle, _ 
 90, 90, 90, 80).Fill 
 .ForeColor.RGB = RGB(0, 128, 128) 
 .OneColorGradient msoGradientHorizontal, 1, 1 
End With

Methods

Properties

See also

[!includeSupport and feedback]