Sort Score
Result 10 results
Languages All
Labels All
Results 81 - 90 of 22,168 for

editor

(1.75 sec)
  1. Move Field|Aspose.PDF for Java

    Learn how to move an existing form field in a PDF document in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . moveField ( "Country" , 200...

    docs.aspose.com/pdf/java/move-field/
  2. 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/
  3. Working with Page Rotation|Aspose.PDF for .NET

    This section explains how to work with Page Rotation using PdfPageEditor Class....GetDataDir_AsposePdf (); using ( var editor = new Aspose . Pdf . Facades...()) { // Bind PDF document editor . BindPdf ( dataDir + "sample...

    docs.aspose.com/pdf/net/working-with-page-rotat...
  4. 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/
  5. 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/
  6. Image Operations|Aspose.PDF for Java

    Learn the current Java image-operation coverage available in the PdfContentEditor facade in Aspose.PDF....PdfContentEditor editor = new PdfContentEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . replaceImage ( 1 , 1 , imageFile...

    docs.aspose.com/pdf/java/pdfcontenteditor-image...
  7. Exploring features of FormEditor class|Aspose.P...

    You can learn details of exploring features of FormEditor class with Aspose. PDF for .NET library...instance of FormEditor using ( var editor = new Aspose . Pdf . Facades...// Add field in the PDF file editor . AddField ( Aspose . Pdf ...

    docs.aspose.com/pdf/net/exploring-features-of-f...
  8. Copy Inner Field|Aspose.PDF for Java

    Learn how to copy a form field to a new position within the same PDF document in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...( inputFile . toString ()); editor . copyInnerField ( "First Name"...

    docs.aspose.com/pdf/java/copy-inner-field/
  9. 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/
  10. Add Attachment|Aspose.PDF for Java

    Learn how to attach an external file to a PDF document in Java using the PdfContentEditor facade in Aspose.PDF....Exception { PdfContentEditor editor = new PdfContentEditor ();...)) { editor . bindPdf ( inputFile . toString ()); editor . addDocumentAttachmen...

    docs.aspose.com/pdf/java/add-attachment/