Sort Score
Result 10 results
Languages All
Labels All
Results 71 - 80 of 22,167 for

editor

(0.3 sec)
  1. Replace Text With State|Aspose.PDF for Java

    Learn how to replace text with custom formatting in Java using the PdfContentEditor facade in Aspose.PDF....PdfContentEditor editor = new PdfContentEditor (); try { editor . bindPdf...textState . setFontSize ( 14 ); editor . getReplaceTextStrate ()....

    docs.aspose.com/pdf/java/replace-text-with-state/
  2. Set Submit URL|Aspose.PDF for Java

    Learn how to set a submit URL for a PDF form button in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . setSubmitUrl ( "Script_Demo_Button"...

    docs.aspose.com/pdf/java/set-submit-url/
  3. Set Field Script|Aspose.PDF for Java

    Learn how to assign or update a JavaScript action on a PDF form field in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . addFieldScript ( "Script_Demo_Button"...

    docs.aspose.com/pdf/java/set-field-script/
  4. Add Document Action|Aspose.PDF for Java

    Learn how to add a document-open action to a PDF in Java using the PdfContentEditor facade in Aspose.PDF....PdfContentEditor editor = new PdfContentEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . addDocumentAdditiona ( PdfContentEditor...

    docs.aspose.com/pdf/java/add-document-action/
  5. Create CheckBox Field|Aspose.PDF for Java

    Learn how to add a check box form field to a PDF document in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . addField ( FieldType . CheckBox...

    docs.aspose.com/pdf/java/create-checkbox-field/
  6. Copy Inner and Outer Field|Aspose.PDF for Java

    This section explains how to copy inner and outer Field with com.aspose.pdf.facades using FormEditor Class....CopyInnerField () { FormEditor editor = new FormEditor (); Document...(). add (); editor . bindPdf ( document ); editor . copyInnerField...

    docs.aspose.com/pdf/java/copy-inner-and-outer-f...
  7. Add PDF Form Fields|Aspose.PDF for Java

    This topic explains how to work with Form Fields with java/com.aspose.pdf.facades using FormEditor Class....{ FormEditor editor = new FormEditor (); editor . bindPdf ( _dataDir..._dataDir + "Sample-Form-01.pdf" ); editor . addField ( FieldType . Text...

    docs.aspose.com/pdf/java/add-form-fields/
  8. Create ListBox Field|Aspose.PDF for Java

    Learn how to add a list box field to a PDF document in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . setItems ( new String []...

    docs.aspose.com/pdf/java/create-listbox-field/
  9. 探索 FormEditor 类的功能|Aspose.PDF for .NET

    您可以了解如何使用 Aspose.PDF for .NET 库探索 FormEditor 类的功能的详细信息...instance of FormEditor using ( var editor = new Aspose . Pdf . Facades...// Add field in the PDF file editor . AddField ( Aspose . Pdf ...

    docs.aspose.com/pdf/zh/net/exploring-features-o...
  10. Single To Multiple|Aspose.PDF for Java

    Learn how to convert a single-line text field into a multi-line field in a PDF document in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...toString ()); editor . single2Multiple ( "City" ); editor . save (...

    docs.aspose.com/pdf/java/single-to-multiple/