Sort Score
Result 10 results
Languages All
Labels All
Results 91 - 100 of 22,168 for

editor

(0.12 sec)
  1. Rename Field|Aspose.PDF for Java

    Learn how to rename an existing form field in a PDF document in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...toString ()); editor . renameField ( "City" , "Town" ); editor . save...

    docs.aspose.com/pdf/java/rename-field/
  2. 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/
  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. 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...
  5. 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/
  6. 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/
  7. 使用页面旋转|Aspose.PDF for .NET

    本节解释如何使用 PdfPageEditor 类处理页面旋转。...GetDataDir_AsposePdf (); using ( var editor = new Aspose . Pdf . Facades...()) { // Bind PDF document editor . BindPdf ( dataDir + "sample...

    docs.aspose.com/pdf/zh/net/working-with-page-ro...
  8. 移动和删除表单字段|Aspose.PDF for .NET

    探索如何管理PDF中的表单字段,包括移动或删除它们,使用Aspose.PDF for .NET。...GetDataDir_AsposePdf_Forms (); using ( var editor = new Aspose . Pdf . Facades...document editor . BindPdf ( dataDir + "MoveField.pdf" ); editor . MoveField...

    docs.aspose.com/pdf/zh/net/move-remove-form-field/
  9. Decorate Form Field in PDF|Aspose.PDF for Java

    Learn how to apply decorations like borders or colors to form fields in PDF documents using Aspose.PDF in Java....{ FormEditor editor = new FormEditor (); editor . bindPdf ( _dataDir...( 2 ); editor . setFacade ( cityDecoration ); editor . decorateField...

    docs.aspose.com/pdf/java/decorate-form-field/
  10. Copy Outer Field|Aspose.PDF for Java

    Learn how to copy a form field from one PDF document into another in Java using the FormEditor facade in Aspose.PDF....FormEditor editor = new FormEditor (); try { editor . bindPdf...outputFile . toString ()); editor . copyOuterField ( inputFile...

    docs.aspose.com/pdf/java/copy-outer-field/