The BehindFill property determines whether to place an outline behind an object's fill. If the BehindFill property is set to True, the outline appears behind the fill.
Examples:
The following VBA example creates an ellipse, and a thick outline is placed behind the ellipse's fill.
Sub Test()
Dim s As Shape
Set s = ActiveLayer.CreateEllipse2(3, 3, 2)
s.Fill.UniformColor.RGBAssign 255, 0, 0
With s.Outline
.Width = 0.2
.Color.RGBAssign 0, 0, 255
.BehindFill = True
End With
End Sub