📄 pdftechlib.xml
字号:
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.PDFBarcode2D.CodeAlignment">
<summary>
Gets or sets the text alignment for Code property.
</summary>
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.PDFBarcode2D.Text">
<summary>
Gets or sets the additional text to show in the barcode image. This is not the value to encode.
</summary>
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.PDFBarcode2D.TextAlignment">
<summary>
Gets or sets the text alignment for Text property.
</summary>
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.QRCode.Ratio">
<summary>
Wide/narrow bar ratio.
</summary>
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.QRCode.QRCodeEncoding">
<summary>
Gets or sets the encoding to use on that barcode.
</summary>
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.QRCode.ErrorCorrectionLevel">
<summary>
Gets or sets the Error Correction Level.
</summary>
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.QRCode.ModuleSize">
<summary>
Gets or sets the module size. It's uses UnitOfMeasure.
</summary>
</member>
<member name="P:PDFTech.Barcodes.Barcode2D.QRCode.SymbolSize">
<summary>
Gets or sets the symbol size to use on that barcode.
</summary>
</member>
<member name="T:PDFTech.Barcodes.Barcode1D.DeutschePostIdentcode">
<summary>
DeutschePostIdentcode barcode class.
</summary>
<remarks>
Identcode barcode Symbology is used by German Post (Deutsche Post AG) (Deutsche Frachtpost). Also known as: Deutsche Post AG Identcode, German Postal 2 of 5 Identcode, Deutsche Post AG (DHL), Deutsche Frachtpost Identcode, Identcode, CodeIdentcode. The Identcode contains a tracking number providing an identification of the customer (sender) and the mail piece. The value to encode length is 11 digits plus 1 digit checksum which is calculated automatically. The value to encode must have the following structure:
<list type="bullet">
<item>2 digits for ID of primary distribution center.</item>
<item>3 digits for Customer ID.</item>
<item>6 digits for Mailing number.</item>
</list>
</remarks>
</member>
<member name="T:PDFTech.PDFPattern">
<summary>
Represents repeating graphical figure or a smoothly varying color gradient
</summary>
</member>
<member name="T:PDFTech.ProgressEventHandler">
<summary>
Delegate used in the case of raising <see cref="E:PDFTech.PDFDocument.Progress">Progress</see> event.
</summary>
<seealso cref="T:PDFTech.ProgressEventArgs"/>
<seealso cref="E:PDFTech.PDFDocument.Progress"/>
<param name="sender">The source of the event.</param>
<param name="arg">A <see cref="T:PDFTech.ProgressEventArgs">ProgressEventArgs</see> that contains event data. </param>
</member>
<member name="T:PDFTech.PDFDocument">
<summary>
The PDFDocument component is used to create PDF files.
</summary>
</member>
<member name="M:PDFTech.PDFDocument.ImportXml(System.String,System.String,System.String)">
<summary>
Function used to convert XML files to PDF.
</summary>
<param name="xmlFile">Location of XML file</param>
<param name="xslFile">Location of XSL file</param>
<param name="WorkingPath">Location of where the temporary files will be created.</param>
<remarks>XMLToPDF function is use to convert XML files to PDF
You may specify the style information by supplying and XSL dile.
</remarks>
<example>
The code sample below shows how you may easily convert an XML file to a PDF file.
<code>
PDFDocument doc = new PDFDocument("c:\sample.pdf");
doc.XmlToPDF("c:\sample.xml", "c:\sample.xsl", "c:\temp");
doc.Save();
</code>
</example>
</member>
<member name="M:PDFTech.PDFDocument.ImportHTML(System.String)">
<summary>
The function to convert HTML files to PDF
</summary>
<param name="URL">Location of the HTML file </param>
<remarks>
HTMLToPDF function is the easiest way to convert HTML files to PDF
This function supports the following file extensions:
"html","htm","mht","txt". You may also specify a URL on your intranet or a web URL.
</remarks>
<example>
The code sample below shows how easy it is to use this function to convert HTML to PDF using the HTMLToPDF function.
<code>
PDFDocument doc = new PDFDocument("c:\sample.pdf");
doc.HTMLToPDF("http://www.w3.org/");
doc.Save();
</code>
</example>
</member>
<member name="M:PDFTech.PDFDocument.AddAttachment(System.String)">
<summary>
The function to use if you wish to attach a document to an existing pDF file.
</summary>
<param name="fileName"> Location of the attachment file</param>
<returns><see cref="T:PDFTech.PDFAttachment">PdfAttachment</see> represent the embedded pDF document.</returns>
<remarks> Any type of document may be embedded into a PDF document.</remarks>
<example>
The sample code below demonstrates how to attach a file into a PDF document.
<code>
PDFDocument doc = new PDFDocument("sample.pdf");
doc.AddAttachment("C:\\sample.doc");
...
doc.Save();
</code>
</example>
</member>
<member name="M:PDFTech.PDFDocument.AddSchema">
<summary>
Add a new Meta data schema to the document.
</summary>
<returns><see cref="T:PDFTech.PDFMetaDataSchema">PdfMetaDataSchema</see> represents the PDF Meta Data Schema.</returns>
<example>
The sample below demonstrates how custom property values may be set for a given PDF document.
<code>
PDFDocument doc = new PDFDocument("sample.pdf");
PdfMetaDataSchema schema = doc.AddSchema();
schema.StoreSchemaInDocInfo = true;
schema.Properties.Add("Customer", "Joe Doe");
schema.Properties.Add("Company", "Acme Corp.");
...
doc.Save();
</code>
</example>
<remarks>
Metadata schemas are used add custom properties to a document. These properties may be grouped into schemas and more than one schema can be used.
</remarks>
</member>
<member name="M:PDFTech.PDFDocument.AddSignature(System.String,System.Security.Cryptography.X509Certificates.StoreName,PDFTech.PDFPage,System.Drawing.RectangleF)">
<summary>
This function adds a digital signature to the document
</summary>
<param name="signerName"></param>
<param name="stName"></param>
<param name="page"></param>
<param name="box"></param>
<returns></returns>
<example>
This sample shows how to sign a PDF file using X.509 certificates.
<code>
PDFDocument doc = new PDFDocument("sample.pdf");
PDFDigitalSignature sig = new PDFCertificate("MessageSigner",
System.Security.Cryptography.X509Certificates.StoreName.My, doc.CurrentPage, new System.Drawing.RectangleF(10,10,35,35));
sig.Location = "NY";
sig.Reason = "For demo";
sig.ContactInfo = "support@pdf-technologies.com";
doc.Save();
</code>
</example>
</member>
<member name="M:PDFTech.PDFDocument.AddSignature(System.Security.Cryptography.X509Certificates.X509Certificate2,PDFTech.PDFPage,System.Drawing.RectangleF)">
<summary>
This function adds a digital signature to the document
</summary>
<param name="cert"></param>
<param name="page"></param>
<param name="box"></param>
<returns></returns>
<example>
This sample shows how to sign a PDF file using X.509 certificates.
<code>
PDFDocument doc = new PDFDocument("sample.pdf");
PDFDigitalSignature sig = new PDFCertificate("MessageSigner",
System.Security.Cryptography.X509Certificates.StoreName.My, doc.CurrentPage, new System.Drawing.RectangleF(10,10,35,35));
sig.Location = "NY";
sig.Reason = "For demo";
sig.ContactInfo = "support@pdf-technologies.com";
doc.Save();
</code>
</example>
</member>
<member name="F:PDFTech.PDFDocument.License">
<summary>
License number. Set to empty if you are using it in the evaluation mode.
</summary>
</member>
<member name="F:PDFTech.PDFDocument.ApplicationName">
<summary>
Internal use only
</summary>
</member>
<member name="M:PDFTech.PDFDocument.#ctor(System.String)">
<summary>
Creates a new PDFDocument class
</summary>
<param name="fileName">Shows the output location of the PDF file.</param>
</member>
<member name="M:PDFTech.PDFDocument.#ctor(System.String,PDFTech.PDFCreationOptions)">
<summary>
Creates a new PDFDocument class
</summary>
<param name="fileName">Shows the output location of the PDF file.</param>
<param name="options">Creation options</param>
</member>
<member name="M:PDFTech.PDFDocument.Abort">
<summary>
This procedure will clear all internal data and break generation of the PDF document.
</summary>
</member>
<member name="M:PDFTech.PDFDocument.Save">
<summary>
Generate the PDF document.
</summary>
<returns>Returns TRUE document is successfully created. </returns>
</member>
<member name="M:PDFTech.PDFDocument.NewPage">
<summary>
Creates a new page in the PDF document and sets CurrentPage property to new generated page.
</summary>
</member>
<member name="M:PDFTech.PDFDocument.InsertPage(System.Int32)">
<summary>
Create ant inserts a PDFPage into the Pages at the specified index.
</summary>
<param name="Index">The zero-based index at which value should be inserted.</param>
</member>
<member name="M:PDFTech.PDFDocument.SetCurrentPage(System.Int32)">
<summary>
This function sets CurrentPage to page with number "Index".
</summary>
<param name="Index"></param>
</member>
<member name="M:PDFTech.PDFDocument.CreatePDFImportDataAction(System.String)">
<summary>
</summary>
<param name="FileName"></param>
<returns></returns>
</member>
<member name="M:PDFTech.PDFDocument.CreatePDFJavaScriptAction(System.String)">
<summary>
</summary>
<param name="JavaScript"></param>
<returns></returns>
</member>
<member name="M:PDFTech.PDFDocument.CreatePdfLaunchAction(System.String,System.Boolean)">
<summary>
</summary>
<param name="File"></param>
<param name="NewWindow"></param>
<returns></returns>
</member>
<member name="M:PDFTech.PDFDocument.CreatePdfNamedAction(PDFTech.NamedAction)">
<summary>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -