Where do I find cross-hatch fill patterns?

M

MAC

When filling a cell in a table, I cannot find the cross-hatch fill pattern.
Does anyone know what happened to it?
 
A

Andy Pope

Hi,

You could use VBA to get pattern fills.
It's also something you can do to get pattern fills in charts, which
also has no UI method.

BUT how long this approach will remain possible I have no idea.

' change references to slide, shape and cell to suit your need

With ActivePresentation.Slides(1).Shapes(3). _
Table.Cell(2, 3).Shape
With .Fill
.Transparency = 0#
.Visible = msoTrue
.ForeColor.RGB = RGB(0, 0, 0)
.BackColor.RGB = RGB(255, 255, 255)
.Patterned msoPatternHorizontalBrick
End With
End With

Cheers
Andy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top