PdfSharp.Drawing.XPdfForm.FromFile C# (CSharp) Method

FromFile() public static method

Creates an XPdfForm from a file.
public static FromFile ( string path ) : XPdfForm
path string
return XPdfForm
    public static new XPdfForm FromFile(string path)
    {
      // TODO: Same file should return same object (that's why the function is static).
      return new XPdfForm(path);
    }