Drawing a Rectangle

adrian.groves

New Member
Joined
Aug 29, 2012
Messages
18
Hi,

I am trying to draw rectangles using a set of variables and I can draw a solid box using:

With plotsheet.Shapes.AddShape(1, Startx, Starty, BoxWidth, BoxHeight).Fill
.ForeColor.RGB = RGB(Red, Blue, Green)
.BackColor.RGB = RGB(Red, Blue, Green)
End With

(The items in italics are variables.)




The problem comes when I try to define a fill style and I have tried:

With plotsheet.Shapes.AddShape(1, Startx, Starty, BoxWidth, BoxHeight).Fill
.ForeColor.RGB = RGB(Red, Blue, Green)
.BackColor.RGB = RGB(Red, Blue, Green)
.Interior.Pattern = xlPatternCrissCross
End With


I am trying to set a transparency and a pattern type of vertical lines. Can anybody offer any assistance to what the ".Interior.Pattern = xlPatternCrissCross" should be replaced with?

Thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Hi,

I recorded a macro and it suggested the following syntax for the pattern, but you may choose some of the different constants instead of msoPatternVertical

Code:
    With plotsheet.Shapes.AddShape(1, Startx, Starty, BoxWidth, BoxHeight).Fill
        .ForeColor.RGB = RGB(Red, Blue, Green)
        .BackColor.RGB = RGB(Red, Blue, Green)
        .Patterned msoPatternVertical
    End With
 
Upvote 0
KKaren,

Thank you. That worked perfectly

I had been trying several different options for quite a while this afternoon. Thanks again

Adrian
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,746
Members
449,050
Latest member
excelknuckles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top