ここで、Cos&Sinの線は塗りつぶしと同じ色で表示され、「境界線」が意味する場合は、別の線の下にあります。
Show[Plot[{Cos[x], Sin[x]}, {x, 0, 2 Pi}, Filling -> {1 -> {2}},
FillingStyle -> Directive[LightGray], PlotStyle -> LightGray],
Plot[Sech[x], {x, 0, 2 Pi}]]

補遺
受け入れてくれてありがとう。あなたの編集に続いて、これがより完全な答えです:
Show[Plot[{Sech[x],
If[Sech[x] > 0.8, 0.8],
If[Sech[x] > 0.5, 0.5],
If[Sech[x] > 0.3, 0.3],
If[0.5 > Sech[x] > 0.3, Sech[x]]},
{x, 0, 2 Pi}, Filling -> {1 -> {2}, 3 -> {4}, 4 -> {5}},
FillingStyle -> LightGray, PlotStyle -> LightGray],
Plot[Sech[x], {x, 0, 2 Pi}, PlotStyle -> Gray],
Plot[If[0.3 > Sech[x], Sech[x]], {x, 0, 2 Pi},
PlotStyle -> Directive[{Thick, Black}]],
Plot[If[0.8 > Sech[x] > 0.5, Sech[x]], {x, 0, 2 Pi},
PlotStyle -> Directive[{Thick, Black}]],
Map[Graphics[Style[Line[{
{ArcSech[#], 0}, {ArcSech[#], #}}],
Thick, Dashed, Antialiasing -> False]] &,
{0.8, 0.5, 0.3}]]
