public void SetTextOptions(PdfTextOptions textOptions, double x, double y)
 {
     textOptions.Apply(this, x, y);
 }
 public void SetTextOptions(PdfTextOptions textOptions, double x, double y)
 {
     textOptions.Apply(this, x, y);
 }
 /// <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);
 }
 /// <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);
 }