Exemplo n.º 1
0
 public void SetTextOptions(PdfTextOptions textOptions, double x, double y)
 {
     textOptions.Apply(this, x, y);
 }
Exemplo n.º 2
0
 public void SetTextOptions(PdfTextOptions textOptions, double x, double y)
 {
     textOptions.Apply(this, x, y);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Begins a block of text with the given options (convenience method).
 /// </summary>
 public void BeginText(double x, double y, PdfTextOptions options)
 {
     BeginText();
     options.Apply(this, x, y);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Begins a block of text with the given options (convenience method).
 /// </summary>
 public void BeginText(double x, double y, PdfTextOptions options)
 {
     BeginText();
     options.Apply(this, x, y);
 }