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
Copy file name to clipboardExpand all lines: english/go-cpp/_index.md
+16-15Lines changed: 16 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ type Document struct {
40
40
|[SaveMarkdown](./convert/savemarkdown/)| Convert and save the previously opened PDF-document as Markdown-document. |
41
41
|[SaveTiff](./convert/savetiff/)| Convert and save the previously opened PDF-document as Tiff-document. |
42
42
|[SaveDocXEnhanced](./convert/savedocxenhanced/)| Convert and save the previously opened PDF-document as DocX-document with Enhanced Recognition Mode (fully editable tables and paragraphs). |
43
+
|[SaveSvgZip](./convert/savesvgzip/)| Convert and save the previously opened PDF-document as SVG-archive. |
43
44
|[ExportFdf](./convert/exportfdf/)| Export from the previously opened PDF-document with AcroForm to FDF-document. |
44
45
|[ExportXfdf](./convert/exportxfdf/)| Export from the previously opened PDF-document with AcroForm to XFDF-document. |
45
46
|[ExportXml](./convert/exportxml/)| Export from the previously opened PDF-document with AcroForm to XML-document. |
@@ -122,6 +123,21 @@ type Document struct {
122
123
|[About](./miscellaneous/about/)| Return metadata information about the Aspose.PDF for Go via C++. |
123
124
124
125
126
+
# Types secondary
127
+
128
+
## ProductInfo contains metadata about the Aspose.PDF for Go via C++.
129
+
```go
130
+
typeProductInfostruct {
131
+
Productstring`json:"product"`// Name
132
+
Familystring`json:"family"`// Family (e.g., "Aspose.PDF")
133
+
Versionstring`json:"version"`// Version
134
+
ReleaseDatestring`json:"releasedate"`// Release date in ISO format (YYYY-MM-DD)
135
+
Producerstring`json:"producer"`// Producer
136
+
IsLicensedbool`json:"islicensed"`// License status (true if licensed)
137
+
}
138
+
```
139
+
140
+
125
141
# Constants
126
142
127
143
## Enumeration of possible rotation values.
@@ -152,18 +168,3 @@ const (
152
168
PageSizeP11x17int32 = 11// P11x17 size.
153
169
)
154
170
```
155
-
156
-
# Structs
157
-
158
-
## ProductInfo contains metadata about the Aspose.PDF for Go via C++.
159
-
```go
160
-
typeProductInfostruct {
161
-
Productstring`json:"product"`// Name
162
-
Familystring`json:"family"`// Family (e.g., "Aspose.PDF")
163
-
Versionstring`json:"version"`// Version
164
-
ReleaseDatestring`json:"releasedate"`// Release date in ISO format (YYYY-MM-DD)
165
-
Producerstring`json:"producer"`// Producer
166
-
IsLicensedbool`json:"islicensed"`// License status (true if licensed)
Copy file name to clipboardExpand all lines: english/go-cpp/convert/_index.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ url: /go-cpp/convert/
23
23
|[SaveMarkdown](./savemarkdown/)| Convert and save the previously opened PDF-document as Markdown-document. |
24
24
|[SaveTiff](./savetiff/)| Convert and save the previously opened PDF-document as Tiff-document. |
25
25
|[SaveDocXEnhanced](./savedocxenhanced/)| Convert and save the previously opened PDF-document as DocX-document with Enhanced Recognition Mode (fully editable tables and paragraphs). |
26
+
|[SaveSvgZip](./savesvgzip/)| Convert and save the previously opened PDF-document as SVG-archive. |
26
27
|[ExportFdf](./exportfdf/)| Export from the previously opened PDF-document with AcroForm to FDF-document. |
27
28
|[ExportXfdf](./exportxfdf/)| Export from the previously opened PDF-document with AcroForm to XFDF-document. |
28
29
|[ExportXml](./exportxml/)| Export from the previously opened PDF-document with AcroForm to XML-document. |
0 commit comments