DefaultFill Property

DefaultFill returns the default fill properties object for this document. Returns a FillFormat object. This is a read-only property.

Syntax

object.DefaultFill

Example 1

This example demonstrates how to return the default foreground color fill of a plot document.

Debug.Print Plot.DefaultFill.Pattern

Example 2

This example demonstrates how to set the default fill pattern of a plot document to Checkerboard.

Plot.DefaultFill.Pattern = "Checkerboard"

Example 3

This script displays all the methods and properties in the PlotDocument object.

Used by: PlotDocument object