Beispiel #1
0
 /// <summary>
 /// Create a pen with a 'Dash Dot Dot' drawing patterns
 /// </summary>
 /// <param name="color">The color.</param>
 /// <param name="width">The width.</param>
 /// <returns>The Pen</returns>
 public static Pen DashDotDot(Color color, float width)
 => new Pen(Pens <Color, uint> .DashDotDot(color, width));
Beispiel #2
0
 /// <summary>
 /// Create a pen with a 'Dash Dot Dot' drawing patterns
 /// </summary>
 /// <param name="brush">The brush.</param>
 /// <param name="width">The width.</param>
 /// <returns>The Pen</returns>
 public static Pen DashDotDot(IBrush <Rgba32> brush, float width) => new Pen(Pens <Rgba32> .DashDotDot(brush, width));
Beispiel #3
0
 /// <summary>
 /// Create a pen with a 'Dash Dot' drawing patterns
 /// </summary>
 /// <param name="brush">The brush.</param>
 /// <param name="width">The width.</param>
 /// <returns>The Pen</returns>
 public static Pen DashDot(IBrush <Color, uint> brush, float width)
 => new Pen(Pens <Color, uint> .DashDot(brush, width));
Beispiel #4
0
 /// <summary>
 /// Create a pen with a 'Dash Dot Dot' drawing patterns
 /// </summary>
 /// <param name="color">The color.</param>
 /// <param name="width">The width.</param>
 /// <returns>The Pen</returns>
 public static Pen DashDotDot(Rgba32 color, float width) => new Pen(Pens <Rgba32> .DashDotDot(color, width));