コード例 #1
0
 /// <summary>
 /// Sets the fill color.
 /// </summary>
 public void SetFillColor(PdfColor color)
 {
     this.Write(color.ToString());
     this.WriteLine(" rg");
 }
コード例 #2
0
 /// <summary>
 /// Sets the stroke or pen color.
 /// </summary>
 public void SetStrokeColor(PdfColor color)
 {
     this.Write(color.ToString());
     this.WriteLine(" RG");
 }