You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.
String name ="name_example"; // String | The document name.
107
+
String fieldName ="fieldName_example"; // String | The field name/
108
+
String storage ="storage_example"; // String | The document storage.
109
+
String folder ="folder_example"; // String | The document folder.
110
+
try {
111
+
SaaSposeResponse result = apiInstance.deleteField(name, fieldName, storage, folder);
112
+
System.out.println(result);
113
+
} catch (ApiException e) {
114
+
System.err.println("Exception when calling PdfApi#deleteField");
115
+
e.printStackTrace();
116
+
}
117
+
}
118
+
}
102
119
103
-
com.squareup.okhttp.Call result = pdfApi.deleteField(name, fieldName, storage, folder);
104
120
```
105
121
106
-
107
122
## Unit Tests
108
123
Aspose PDF Cloud SDK includes a suite of unit tests within the "test" subdirectory. These Unit Tests also serves as examples of how to use the Aspose PDF Cloud SDK.
Copy file name to clipboardExpand all lines: build.gradle
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
20
20
apply plugin: 'eclipse'
21
21
22
22
group ='com.aspose'
23
-
version ='21.11.0'
23
+
version ='21.12.0'
24
24
25
25
buildscript {
26
26
repositories {
@@ -84,7 +84,7 @@ dependencies {
84
84
publish {
85
85
groupId ='com.aspose'
86
86
artifactId ='aspose-pdf-cloud'
87
-
publishVersion ='21.11.0'
87
+
publishVersion ='21.12.0'
88
88
desc ='Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
0 commit comments