Sets or returns a object that represents the foreground color. This is the alternate color that is used with patterns.

public System.Drawing.Color ForegroundColor{ get; set; }
Public Property ForegroundColor() As System.Drawing.Color

MS Word equivalent: Format menu > Borders and Shading... > Shading tab > Patterns section > Color:

          //--- Return ForegroundColor
          Color clr = shad.ForegroundColor;

          //--- Set ForegroundColor
          shad.ForegroundColor = Color.Yellow;
        
          '--- Return ForegroundColor
          Dim clr As Color = shad.ForegroundColor

          '--- Set ForegroundColor
          shad.ForegroundColor = Color.Yellow