LineFormat.BackColor (Word)

Zurückgeben oder Festlegen eines ColorFormat -Objekts, das die Hintergrundfarbe für eine gemusterte Linien darstellt.


Dim docActive As Document 
 
Set docActive = ActiveDocument 
 
With docActive.Shapes.AddLine(10, 100, 250, 0).Line 
 .Weight = 6 
 .ForeColor.RGB = RGB(0, 0, 255) 
 .BackColor.RGB = RGB(128, 0, 0) 
 .Pattern = msoPatternDarkDownwardDiagonal 
End With