Пример #1
0
 public StrokeStyleW(sStrokeStyle strokeStyle, float strokeWidth)
 {
     this.strokeStyle = strokeStyle;
     this.strokeWidth = strokeWidth;
 }
Пример #2
0
 /// <summary>Construct the structure</summary>
 public sStrokeInfo(sStrokeStyle style, float width)
 {
     this.style = style;
     this.width = width;
 }
Пример #3
0
 public StrokeStyle(sStrokeStyle ss)
 {
     strokeStyle = ss;
 }
Пример #4
0
 iStrokeStyle iDrawDevice.createStrokeStyle(sStrokeStyle style)
 {
     return(d2dDevice.createStrokeStyle(ref style));
 }