バージョン

Shading 構造体

文字、段落、テーブル セルに適用する影を表します。
シンタックス
'宣言
 
Public Structure Shading 
   Inherits System.ValueType
public struct Shading : System.ValueType 
解説

注: この構造を XAML で指定するには、型コンバーターが提供されます。値の例は "" に含まれ、相対する C# コード例も表示されます。

  • "automatic" - new Shading(ColorInfo.Automatic)
  • "#FF0000FF" - new Shading(new ColorInfo(Colors.Blue))
  • "#FF0000FF,-0.6" - new Shading(new ColorInfo(Colors.Blue, -.6d))
  • "DiagStripe:automatic" - new Shading(ColorInfo.Automatic, ShadingPattern.DiagStripe, null)
  • "Pct35:#FF0000FF,0.3" - new Shading(new ColorInfo(Colors.Blue, .3d), ShadingPattern.Pct35, null)
  • "Pct35:#FF0000FF,0.3:#FFFF0000" - new Shading(new ColorInfo(Colors.Blue, .3d), ShadingPattern.Pct35, new ColorInfo(Colors.Red))
  • "Pct35:#FF0000FF,0.3:#FFFF0000,-0.5" - new Shading(new ColorInfo(Colors.Blue, .3d), ShadingPattern.Pct35, new ColorInfo(Colors.Red, -.5d))

参照