| PdfDocumentCreateNew Method |
Create a new PDF document.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public static PdfDocument CreateNew(
PdfForms forms = null
)
Public Shared Function CreateNew (
Optional forms As PdfForms = Nothing
) As PdfDocument
public:
static PdfDocument^ CreateNew(
PdfForms^ forms = nullptr
)
static member CreateNew :
?forms : PdfForms
(* Defaults:
let _forms = defaultArg forms null
*)
-> PdfDocument
public static PdfDocument CreateNew(
PdfForms forms = null
)
Patagames.Pdf.Net.PdfDocument.CreateNew = function(forms);
Parameters
- forms PdfForms (Optional)
- Instance of PdfForms class that will be associated with document
Return Value
PdfDocumentA instance of PDFDocument class represented a new PDF document. If failed, null is returned
See Also