spire-pdf 11.6.1__py3-none-macosx_10_7_universal.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of spire-pdf might be problematic. Click here for more details.

Files changed (566) hide show
  1. spire/__init__.py +0 -0
  2. spire/pdf/ArtifactPropertyList.py +13 -0
  3. spire/pdf/AspectRatio.py +16 -0
  4. spire/pdf/BookletOptions.py +40 -0
  5. spire/pdf/Clip.py +16 -0
  6. spire/pdf/Collections_PdfCollection.py +121 -0
  7. spire/pdf/CompressionLevel.py +26 -0
  8. spire/pdf/ConfiguerGraphicType.py +18 -0
  9. spire/pdf/CustomFieldType.py +20 -0
  10. spire/pdf/DataFormat.py +16 -0
  11. spire/pdf/DocxOptions.py +228 -0
  12. spire/pdf/FileFormat.py +26 -0
  13. spire/pdf/FileRelatedFieldType.py +24 -0
  14. spire/pdf/Find_TextFindParameter.py +17 -0
  15. spire/pdf/GraphicMode.py +17 -0
  16. spire/pdf/HtmlConverter.py +564 -0
  17. spire/pdf/HtmlToPdfLayoutParams.py +93 -0
  18. spire/pdf/HtmlToPdfResult.py +36 -0
  19. spire/pdf/HttpMethod.py +14 -0
  20. spire/pdf/HttpReadType.py +15 -0
  21. spire/pdf/IOCSPService.py +27 -0
  22. spire/pdf/IPdfComboBoxField.py +388 -0
  23. spire/pdf/IPdfSignatureAppearance.py +20 -0
  24. spire/pdf/IPdfSignatureFormatter.py +31 -0
  25. spire/pdf/IPdfTextBoxField.py +305 -0
  26. spire/pdf/IStructureNode.py +12 -0
  27. spire/pdf/ITSAService.py +27 -0
  28. spire/pdf/ImageFormatType.py +16 -0
  29. spire/pdf/ImageQuality.py +15 -0
  30. spire/pdf/ImageType.py +14 -0
  31. spire/pdf/ImgData.py +208 -0
  32. spire/pdf/LayerExportState.py +15 -0
  33. spire/pdf/LayerPrintState.py +20 -0
  34. spire/pdf/LayerViewState.py +20 -0
  35. spire/pdf/LineBorder.py +73 -0
  36. spire/pdf/LineInfo.py +53 -0
  37. spire/pdf/LineType.py +17 -0
  38. spire/pdf/LoadHtmlType.py +18 -0
  39. spire/pdf/MergerOptions.py +39 -0
  40. spire/pdf/OCSPHttpService.py +32 -0
  41. spire/pdf/OfdConverter.py +89 -0
  42. spire/pdf/OptimizationOptions.py +85 -0
  43. spire/pdf/PDF3DAnimationType.py +15 -0
  44. spire/pdf/Pdf3DActivation.py +113 -0
  45. spire/pdf/Pdf3DActivationMode.py +20 -0
  46. spire/pdf/Pdf3DActivationState.py +14 -0
  47. spire/pdf/Pdf3DAnimation.py +69 -0
  48. spire/pdf/Pdf3DAnnotation.py +167 -0
  49. spire/pdf/Pdf3DBackground.py +84 -0
  50. spire/pdf/Pdf3DCrossSection.py +144 -0
  51. spire/pdf/Pdf3DCrossSectionCollection.py +117 -0
  52. spire/pdf/Pdf3DDeactivationMode.py +15 -0
  53. spire/pdf/Pdf3DDeactivationState.py +15 -0
  54. spire/pdf/Pdf3DLighting.py +42 -0
  55. spire/pdf/Pdf3DLightingStyle.py +24 -0
  56. spire/pdf/Pdf3DNode.py +98 -0
  57. spire/pdf/Pdf3DNodeCollection.py +123 -0
  58. spire/pdf/Pdf3DProjection.py +120 -0
  59. spire/pdf/Pdf3DProjectionClipStyle.py +15 -0
  60. spire/pdf/Pdf3DProjectionOrthoScaleMode.py +18 -0
  61. spire/pdf/Pdf3DProjectionType.py +15 -0
  62. spire/pdf/Pdf3DRenderStyle.py +44 -0
  63. spire/pdf/Pdf3DRendermode.py +158 -0
  64. spire/pdf/Pdf3DView.py +213 -0
  65. spire/pdf/Pdf3DViewCollection.py +124 -0
  66. spire/pdf/PdfAction.py +31 -0
  67. spire/pdf/PdfActionAnnotation.py +28 -0
  68. spire/pdf/PdfActionCollection.py +110 -0
  69. spire/pdf/PdfActionDestination.py +22 -0
  70. spire/pdf/PdfActionLinkAnnotation.py +37 -0
  71. spire/pdf/PdfAlignmentStyle.py +22 -0
  72. spire/pdf/PdfAnnotation.py +161 -0
  73. spire/pdf/PdfAnnotationActions.py +202 -0
  74. spire/pdf/PdfAnnotationBorder.py +86 -0
  75. spire/pdf/PdfAnnotationCollection.py +164 -0
  76. spire/pdf/PdfAnnotationException.py +13 -0
  77. spire/pdf/PdfAnnotationFlags.py +22 -0
  78. spire/pdf/PdfAnnotationIntent.py +14 -0
  79. spire/pdf/PdfAnnotationWidget.py +47 -0
  80. spire/pdf/PdfAnnotationWidgetCollection.py +68 -0
  81. spire/pdf/PdfAnnotationWidgetTypes.py +46 -0
  82. spire/pdf/PdfAppearance.py +113 -0
  83. spire/pdf/PdfAppearanceField.py +26 -0
  84. spire/pdf/PdfAppearanceState.py +94 -0
  85. spire/pdf/PdfApplicationData.py +24 -0
  86. spire/pdf/PdfAttachment.py +39 -0
  87. spire/pdf/PdfAttachmentAnnotation.py +93 -0
  88. spire/pdf/PdfAttachmentAnnotationWidget.py +61 -0
  89. spire/pdf/PdfAttachmentCollection.py +112 -0
  90. spire/pdf/PdfAttachmentIcon.py +17 -0
  91. spire/pdf/PdfAttachmentRelationship.py +24 -0
  92. spire/pdf/PdfAttributeOwner.py +132 -0
  93. spire/pdf/PdfAutomaticField.py +154 -0
  94. spire/pdf/PdfBarcode.py +180 -0
  95. spire/pdf/PdfBarcodeException.py +13 -0
  96. spire/pdf/PdfBarcodeQuietZones.py +112 -0
  97. spire/pdf/PdfBarcodeTextAlignment.py +15 -0
  98. spire/pdf/PdfBitmap.py +112 -0
  99. spire/pdf/PdfBlend.py +36 -0
  100. spire/pdf/PdfBlendBase.py +37 -0
  101. spire/pdf/PdfBlendMode.py +29 -0
  102. spire/pdf/PdfBookletBindingMode.py +18 -0
  103. spire/pdf/PdfBookletCreator.py +67 -0
  104. spire/pdf/PdfBookmark.py +135 -0
  105. spire/pdf/PdfBookmarkCollection.py +95 -0
  106. spire/pdf/PdfBookmarkWidget.py +87 -0
  107. spire/pdf/PdfBorderEffect.py +15 -0
  108. spire/pdf/PdfBorderOverlapStyle.py +14 -0
  109. spire/pdf/PdfBorderStyle.py +17 -0
  110. spire/pdf/PdfBorders.py +113 -0
  111. spire/pdf/PdfBrush.py +25 -0
  112. spire/pdf/PdfBrushes.py +1846 -0
  113. spire/pdf/PdfButtonField.py +221 -0
  114. spire/pdf/PdfButtonIconLayout.py +92 -0
  115. spire/pdf/PdfButtonIconScaleMode.py +14 -0
  116. spire/pdf/PdfButtonIconScaleReason.py +16 -0
  117. spire/pdf/PdfButtonLayoutMode.py +28 -0
  118. spire/pdf/PdfButtonWidgetFieldWidget.py +92 -0
  119. spire/pdf/PdfButtonWidgetItemCollection.py +23 -0
  120. spire/pdf/PdfButtonWidgetWidgetItem.py +63 -0
  121. spire/pdf/PdfCalGrayColor.py +44 -0
  122. spire/pdf/PdfCalGrayColorSpace.py +96 -0
  123. spire/pdf/PdfCalRGBColor.py +102 -0
  124. spire/pdf/PdfCalRGBColorSpace.py +132 -0
  125. spire/pdf/PdfCanvas.py +1714 -0
  126. spire/pdf/PdfCaretAnnotationWidget.py +21 -0
  127. spire/pdf/PdfCellStyle.py +126 -0
  128. spire/pdf/PdfCertificate.py +19 -0
  129. spire/pdf/PdfCertificationFlags.py +15 -0
  130. spire/pdf/PdfCheckBoxField.py +47 -0
  131. spire/pdf/PdfCheckBoxStyle.py +20 -0
  132. spire/pdf/PdfCheckBoxWidgetFieldWidget.py +61 -0
  133. spire/pdf/PdfCheckBoxWidgetWidgetItem.py +16 -0
  134. spire/pdf/PdfCheckBoxWidgetWidgetItemCollection.py +23 -0
  135. spire/pdf/PdfCheckFieldBase.py +37 -0
  136. spire/pdf/PdfChoiceWidgetFieldWidget.py +114 -0
  137. spire/pdf/PdfCjkFontFamily.py +19 -0
  138. spire/pdf/PdfCjkStandardFont.py +70 -0
  139. spire/pdf/PdfCodabarBarcode.py +38 -0
  140. spire/pdf/PdfCode11Barcode.py +36 -0
  141. spire/pdf/PdfCode128ABarcode.py +36 -0
  142. spire/pdf/PdfCode128BBarcode.py +28 -0
  143. spire/pdf/PdfCode128CBarcode.py +14 -0
  144. spire/pdf/PdfCode32Barcode.py +37 -0
  145. spire/pdf/PdfCode39Barcode.py +37 -0
  146. spire/pdf/PdfCode39ExtendedBarcode.py +25 -0
  147. spire/pdf/PdfCode93Barcode.py +37 -0
  148. spire/pdf/PdfCode93ExtendedBarcode.py +36 -0
  149. spire/pdf/PdfCollection.py +46 -0
  150. spire/pdf/PdfColorBlend.py +37 -0
  151. spire/pdf/PdfColorMask.py +50 -0
  152. spire/pdf/PdfColorSpace.py +17 -0
  153. spire/pdf/PdfColorSpaces.py +12 -0
  154. spire/pdf/PdfColumn.py +67 -0
  155. spire/pdf/PdfColumnCollection.py +34 -0
  156. spire/pdf/PdfComboBoxField.py +47 -0
  157. spire/pdf/PdfComboBoxWidgetFieldWidget.py +74 -0
  158. spire/pdf/PdfComboBoxWidgetItemCollection.py +29 -0
  159. spire/pdf/PdfComboBoxWidgetWidgetItem.py +16 -0
  160. spire/pdf/PdfCompareOptions.py +82 -0
  161. spire/pdf/PdfComparer.py +63 -0
  162. spire/pdf/PdfComplexColor.py +23 -0
  163. spire/pdf/PdfCompositeField.py +205 -0
  164. spire/pdf/PdfCompressionLevel.py +42 -0
  165. spire/pdf/PdfCompressor.py +79 -0
  166. spire/pdf/PdfConformanceException.py +13 -0
  167. spire/pdf/PdfConformanceLevel.py +20 -0
  168. spire/pdf/PdfConvertOptions.py +222 -0
  169. spire/pdf/PdfCreationDateField.py +81 -0
  170. spire/pdf/PdfCrossReferenceType.py +16 -0
  171. spire/pdf/PdfCustomAppearance.py +28 -0
  172. spire/pdf/PdfDashStyle.py +19 -0
  173. spire/pdf/PdfDateTimeField.py +91 -0
  174. spire/pdf/PdfDestination.py +225 -0
  175. spire/pdf/PdfDestinationMode.py +17 -0
  176. spire/pdf/PdfDestinationPageNumberField.py +111 -0
  177. spire/pdf/PdfDeviceColorSpace.py +31 -0
  178. spire/pdf/PdfDockStyle.py +18 -0
  179. spire/pdf/PdfDocument.py +1759 -0
  180. spire/pdf/PdfDocumentActions.py +162 -0
  181. spire/pdf/PdfDocumentAuthorField.py +67 -0
  182. spire/pdf/PdfDocumentBase.py +744 -0
  183. spire/pdf/PdfDocumentException.py +13 -0
  184. spire/pdf/PdfDocumentInformation.py +207 -0
  185. spire/pdf/PdfDocumentLinkAnnotation.py +54 -0
  186. spire/pdf/PdfDocumentLinkAnnotationWidget.py +40 -0
  187. spire/pdf/PdfDocumentPageCollection.py +79 -0
  188. spire/pdf/PdfDocumentPrivilege.py +163 -0
  189. spire/pdf/PdfDocumentTemplate.py +241 -0
  190. spire/pdf/PdfDrawWidget.py +28 -0
  191. spire/pdf/PdfDynamicField.py +13 -0
  192. spire/pdf/PdfEdges.py +99 -0
  193. spire/pdf/PdfEmbeddedFileSpecification.py +135 -0
  194. spire/pdf/PdfEmbeddedGoToAction.py +91 -0
  195. spire/pdf/PdfEncryptionAlgorithm.py +16 -0
  196. spire/pdf/PdfEncryptionKeySize.py +20 -0
  197. spire/pdf/PdfException.py +21 -0
  198. spire/pdf/PdfExtend.py +17 -0
  199. spire/pdf/PdfExtendedAppearance.py +48 -0
  200. spire/pdf/PdfField.py +144 -0
  201. spire/pdf/PdfFieldActions.py +201 -0
  202. spire/pdf/PdfFieldCollection.py +111 -0
  203. spire/pdf/PdfFieldWidget.py +154 -0
  204. spire/pdf/PdfFieldWidgetImportError.py +23 -0
  205. spire/pdf/PdfFieldWidgetItem.py +80 -0
  206. spire/pdf/PdfFileAnnotation.py +49 -0
  207. spire/pdf/PdfFileInfo.py +85 -0
  208. spire/pdf/PdfFileLinkAnnotation.py +76 -0
  209. spire/pdf/PdfFileLinkAnnotationWidget.py +39 -0
  210. spire/pdf/PdfFilePathType.py +14 -0
  211. spire/pdf/PdfFileSpecificationBase.py +36 -0
  212. spire/pdf/PdfFillElement.py +31 -0
  213. spire/pdf/PdfFillMode.py +18 -0
  214. spire/pdf/PdfFolder.py +100 -0
  215. spire/pdf/PdfFont.py +61 -0
  216. spire/pdf/PdfFontBase.py +298 -0
  217. spire/pdf/PdfFontFamily.py +24 -0
  218. spire/pdf/PdfFontStyle.py +17 -0
  219. spire/pdf/PdfFontType.py +20 -0
  220. spire/pdf/PdfForm.py +123 -0
  221. spire/pdf/PdfFormAction.py +54 -0
  222. spire/pdf/PdfFormFieldCollection.py +12 -0
  223. spire/pdf/PdfFormFieldWidgetCollection.py +84 -0
  224. spire/pdf/PdfFormWidget.py +148 -0
  225. spire/pdf/PdfFreeTextAnnotation.py +291 -0
  226. spire/pdf/PdfFreeTextAnnotationWidget.py +129 -0
  227. spire/pdf/PdfGoToAction.py +64 -0
  228. spire/pdf/PdfGotoNameAction.py +32 -0
  229. spire/pdf/PdfGradientBrush.py +65 -0
  230. spire/pdf/PdfGraphicsState.py +12 -0
  231. spire/pdf/PdfGraphicsUnit.py +19 -0
  232. spire/pdf/PdfGraphicsWidget.py +55 -0
  233. spire/pdf/PdfGrayConverter.py +60 -0
  234. spire/pdf/PdfGrid.py +91 -0
  235. spire/pdf/PdfGridCell.py +110 -0
  236. spire/pdf/PdfGridCellCollection.py +71 -0
  237. spire/pdf/PdfGridCellContent.py +158 -0
  238. spire/pdf/PdfGridCellContentList.py +23 -0
  239. spire/pdf/PdfGridCellStyle.py +84 -0
  240. spire/pdf/PdfGridColumn.py +65 -0
  241. spire/pdf/PdfGridColumnCollection.py +119 -0
  242. spire/pdf/PdfGridHeaderCollection.py +73 -0
  243. spire/pdf/PdfGridLayoutFormat.py +12 -0
  244. spire/pdf/PdfGridLayoutResult.py +12 -0
  245. spire/pdf/PdfGridRow.py +89 -0
  246. spire/pdf/PdfGridRowCollection.py +50 -0
  247. spire/pdf/PdfGridRowStyle.py +35 -0
  248. spire/pdf/PdfGridStyle.py +105 -0
  249. spire/pdf/PdfGridStyleBase.py +125 -0
  250. spire/pdf/PdfHTMLTextElement.py +142 -0
  251. spire/pdf/PdfHeaderSource.py +14 -0
  252. spire/pdf/PdfHighlightMode.py +18 -0
  253. spire/pdf/PdfHorizontalAlignment.py +16 -0
  254. spire/pdf/PdfHorizontalOverflowType.py +18 -0
  255. spire/pdf/PdfHtmlLayoutFormat.py +148 -0
  256. spire/pdf/PdfICCColor.py +48 -0
  257. spire/pdf/PdfICCColorSpace.py +80 -0
  258. spire/pdf/PdfImage.py +170 -0
  259. spire/pdf/PdfImageHelper.py +81 -0
  260. spire/pdf/PdfImageMask.py +34 -0
  261. spire/pdf/PdfImageType.py +14 -0
  262. spire/pdf/PdfInkAnnotation.py +28 -0
  263. spire/pdf/PdfInkAnnotationWidget.py +21 -0
  264. spire/pdf/PdfJavaScript.py +214 -0
  265. spire/pdf/PdfJavaScriptAction.py +48 -0
  266. spire/pdf/PdfKnownColor.py +39 -0
  267. spire/pdf/PdfKnownColorSpace.py +61 -0
  268. spire/pdf/PdfLabColor.py +102 -0
  269. spire/pdf/PdfLabColorSpace.py +102 -0
  270. spire/pdf/PdfLaunchAction.py +69 -0
  271. spire/pdf/PdfLayer.py +128 -0
  272. spire/pdf/PdfLayerCollection.py +172 -0
  273. spire/pdf/PdfLayerOutline.py +62 -0
  274. spire/pdf/PdfLayoutBreakType.py +14 -0
  275. spire/pdf/PdfLayoutHTMLResult.py +23 -0
  276. spire/pdf/PdfLayoutParams.py +60 -0
  277. spire/pdf/PdfLayoutResult.py +41 -0
  278. spire/pdf/PdfLayoutType.py +15 -0
  279. spire/pdf/PdfLayoutWidget.py +165 -0
  280. spire/pdf/PdfLineAnnotation.py +310 -0
  281. spire/pdf/PdfLineAnnotationWidget.py +241 -0
  282. spire/pdf/PdfLineBorderStyle.py +17 -0
  283. spire/pdf/PdfLineCap.py +15 -0
  284. spire/pdf/PdfLineCaptionType.py +18 -0
  285. spire/pdf/PdfLineEndingStyle.py +22 -0
  286. spire/pdf/PdfLineIntent.py +14 -0
  287. spire/pdf/PdfLineJoin.py +16 -0
  288. spire/pdf/PdfLinearGradientBrush.py +146 -0
  289. spire/pdf/PdfLinearGradientMode.py +16 -0
  290. spire/pdf/PdfLinkAnnotation.py +31 -0
  291. spire/pdf/PdfList.py +122 -0
  292. spire/pdf/PdfListBase.py +143 -0
  293. spire/pdf/PdfListBoxField.py +50 -0
  294. spire/pdf/PdfListBoxWidgetFieldWidget.py +52 -0
  295. spire/pdf/PdfListField.py +79 -0
  296. spire/pdf/PdfListFieldItem.py +83 -0
  297. spire/pdf/PdfListFieldItemCollection.py +121 -0
  298. spire/pdf/PdfListFieldWidgetItem.py +16 -0
  299. spire/pdf/PdfListItem.py +122 -0
  300. spire/pdf/PdfListItemCollection.py +166 -0
  301. spire/pdf/PdfListMarkerAlignment.py +14 -0
  302. spire/pdf/PdfListWidgetFieldItemCollection.py +23 -0
  303. spire/pdf/PdfListWidgetItem.py +74 -0
  304. spire/pdf/PdfListWidgetItemCollection.py +64 -0
  305. spire/pdf/PdfMDPSignatureMaker.py +54 -0
  306. spire/pdf/PdfMargins.py +170 -0
  307. spire/pdf/PdfMarkUpAnnotationWidget.py +111 -0
  308. spire/pdf/PdfMarker.py +100 -0
  309. spire/pdf/PdfMarkerBase.py +107 -0
  310. spire/pdf/PdfMask.py +13 -0
  311. spire/pdf/PdfMatrix.py +269 -0
  312. spire/pdf/PdfMatrixOrder.py +18 -0
  313. spire/pdf/PdfMerger.py +57 -0
  314. spire/pdf/PdfMetafile.py +83 -0
  315. spire/pdf/PdfMetafileLayoutFormat.py +48 -0
  316. spire/pdf/PdfMultipleNumberValueField.py +37 -0
  317. spire/pdf/PdfMultipleValueField.py +12 -0
  318. spire/pdf/PdfNamedAction.py +37 -0
  319. spire/pdf/PdfNewDocument.py +117 -0
  320. spire/pdf/PdfNewPage.py +34 -0
  321. spire/pdf/PdfNumberStyle.py +18 -0
  322. spire/pdf/PdfOrderedMarker.py +112 -0
  323. spire/pdf/PdfOrdinarySignatureMaker.py +32 -0
  324. spire/pdf/PdfPKCS1Formatter.py +59 -0
  325. spire/pdf/PdfPKCS7Formatter.py +55 -0
  326. spire/pdf/PdfPaddings.py +99 -0
  327. spire/pdf/PdfPageBase.py +665 -0
  328. spire/pdf/PdfPageCollection.py +384 -0
  329. spire/pdf/PdfPageCountField.py +92 -0
  330. spire/pdf/PdfPageLabels.py +124 -0
  331. spire/pdf/PdfPageLayout.py +26 -0
  332. spire/pdf/PdfPageMode.py +18 -0
  333. spire/pdf/PdfPageNumberField.py +67 -0
  334. spire/pdf/PdfPageOrientation.py +15 -0
  335. spire/pdf/PdfPageRotateAngle.py +16 -0
  336. spire/pdf/PdfPageSettings.py +275 -0
  337. spire/pdf/PdfPageSize.py +389 -0
  338. spire/pdf/PdfPageTemplateElement.py +271 -0
  339. spire/pdf/PdfPageTransition.py +172 -0
  340. spire/pdf/PdfPageWidget.py +45 -0
  341. spire/pdf/PdfPageWidgetEnumerator.py +54 -0
  342. spire/pdf/PdfPasswordSecurityPolicy.py +22 -0
  343. spire/pdf/PdfPath.py +420 -0
  344. spire/pdf/PdfPen.py +236 -0
  345. spire/pdf/PdfPens.py +1845 -0
  346. spire/pdf/PdfPermissionsFlags.py +23 -0
  347. spire/pdf/PdfPieceInfo.py +42 -0
  348. spire/pdf/PdfPolyLineAnnotation.py +76 -0
  349. spire/pdf/PdfPolyLineAnnotationWidget.py +21 -0
  350. spire/pdf/PdfPolygonAndPolyLineAnnotationWidget.py +21 -0
  351. spire/pdf/PdfPolygonAnnotation.py +129 -0
  352. spire/pdf/PdfPolygonAnnotationWidget.py +21 -0
  353. spire/pdf/PdfPopupAnnotation.py +118 -0
  354. spire/pdf/PdfPopupAnnotationWidget.py +58 -0
  355. spire/pdf/PdfPopupIcon.py +19 -0
  356. spire/pdf/PdfRGBColor.py +351 -0
  357. spire/pdf/PdfRadialGradientBrush.py +136 -0
  358. spire/pdf/PdfRadioButtonItemCollection.py +124 -0
  359. spire/pdf/PdfRadioButtonListField.py +102 -0
  360. spire/pdf/PdfRadioButtonListFieldWidget.py +114 -0
  361. spire/pdf/PdfRadioButtonListItem.py +91 -0
  362. spire/pdf/PdfRadioButtonWidgetItem.py +60 -0
  363. spire/pdf/PdfRadioButtonWidgetWidgetItemCollection.py +29 -0
  364. spire/pdf/PdfResetAction.py +40 -0
  365. spire/pdf/PdfRow.py +36 -0
  366. spire/pdf/PdfRowCollection.py +50 -0
  367. spire/pdf/PdfRubberStampAnnotation.py +163 -0
  368. spire/pdf/PdfRubberStampAnnotationIcon.py +27 -0
  369. spire/pdf/PdfRubberStampAnnotationWidget.py +40 -0
  370. spire/pdf/PdfSection.py +91 -0
  371. spire/pdf/PdfSectionCollection.py +96 -0
  372. spire/pdf/PdfSectionNumberField.py +67 -0
  373. spire/pdf/PdfSectionPageCollection.py +112 -0
  374. spire/pdf/PdfSectionPageCountField.py +64 -0
  375. spire/pdf/PdfSectionPageNumberField.py +64 -0
  376. spire/pdf/PdfSectionTemplate.py +102 -0
  377. spire/pdf/PdfSecurity.py +158 -0
  378. spire/pdf/PdfSecurityPolicy.py +59 -0
  379. spire/pdf/PdfSeparationColor.py +36 -0
  380. spire/pdf/PdfSeparationColorSpace.py +69 -0
  381. spire/pdf/PdfShapeWidget.py +25 -0
  382. spire/pdf/PdfSignature.py +97 -0
  383. spire/pdf/PdfSignatureAppearance.py +153 -0
  384. spire/pdf/PdfSignatureAppearanceField.py +26 -0
  385. spire/pdf/PdfSignatureField.py +79 -0
  386. spire/pdf/PdfSignatureFieldWidget.py +41 -0
  387. spire/pdf/PdfSignatureMaker.py +165 -0
  388. spire/pdf/PdfSignatureProperties.py +61 -0
  389. spire/pdf/PdfSignatureStyledField.py +192 -0
  390. spire/pdf/PdfSinglePageScalingMode.py +22 -0
  391. spire/pdf/PdfSingleValueField.py +13 -0
  392. spire/pdf/PdfSolidBrush.py +78 -0
  393. spire/pdf/PdfSortedList.py +146 -0
  394. spire/pdf/PdfSound.py +104 -0
  395. spire/pdf/PdfSoundAction.py +176 -0
  396. spire/pdf/PdfSoundAnnotation.py +86 -0
  397. spire/pdf/PdfSoundAnnotationWidget.py +69 -0
  398. spire/pdf/PdfSoundChannels.py +18 -0
  399. spire/pdf/PdfSoundEncoding.py +22 -0
  400. spire/pdf/PdfSoundIcon.py +15 -0
  401. spire/pdf/PdfSquareAnnotationWidget.py +45 -0
  402. spire/pdf/PdfStampCollection.py +115 -0
  403. spire/pdf/PdfStandardStructTypes.py +630 -0
  404. spire/pdf/PdfStandardsConverter.py +217 -0
  405. spire/pdf/PdfStateFieldWidget.py +32 -0
  406. spire/pdf/PdfStateItemCollection.py +29 -0
  407. spire/pdf/PdfStateWidgetItem.py +30 -0
  408. spire/pdf/PdfStateWidgetItemCollection.py +23 -0
  409. spire/pdf/PdfStaticField.py +13 -0
  410. spire/pdf/PdfStringFormat.py +284 -0
  411. spire/pdf/PdfStringLayoutResult.py +54 -0
  412. spire/pdf/PdfStringLayouter.py +44 -0
  413. spire/pdf/PdfStructContentItem.py +13 -0
  414. spire/pdf/PdfStructureAttributes.py +83 -0
  415. spire/pdf/PdfStructureElement.py +135 -0
  416. spire/pdf/PdfStructureTreeRoot.py +51 -0
  417. spire/pdf/PdfStyledAnnotationWidget.py +153 -0
  418. spire/pdf/PdfStyledField.py +233 -0
  419. spire/pdf/PdfStyledFieldWidget.py +329 -0
  420. spire/pdf/PdfSubSuperScript.py +15 -0
  421. spire/pdf/PdfSubmitAction.py +212 -0
  422. spire/pdf/PdfSubmitFormFlags.py +25 -0
  423. spire/pdf/PdfTable.py +421 -0
  424. spire/pdf/PdfTableDataSourceType.py +15 -0
  425. spire/pdf/PdfTableException.py +13 -0
  426. spire/pdf/PdfTableExtractor.py +42 -0
  427. spire/pdf/PdfTableLayoutFormat.py +42 -0
  428. spire/pdf/PdfTableLayoutResult.py +22 -0
  429. spire/pdf/PdfTableStyle.py +199 -0
  430. spire/pdf/PdfTaggedContent.py +45 -0
  431. spire/pdf/PdfTemplate.py +124 -0
  432. spire/pdf/PdfTexBoxWidgetItem.py +12 -0
  433. spire/pdf/PdfTextAlignment.py +16 -0
  434. spire/pdf/PdfTextAnnotationIcon.py +19 -0
  435. spire/pdf/PdfTextAnnotationWidget.py +21 -0
  436. spire/pdf/PdfTextBoxField.py +220 -0
  437. spire/pdf/PdfTextBoxFieldWidget.py +212 -0
  438. spire/pdf/PdfTextBoxWidgetItemCollection.py +29 -0
  439. spire/pdf/PdfTextExtractOptions.py +75 -0
  440. spire/pdf/PdfTextExtractor.py +35 -0
  441. spire/pdf/PdfTextFind.py +308 -0
  442. spire/pdf/PdfTextFindCollection.py +23 -0
  443. spire/pdf/PdfTextFindOptions.py +71 -0
  444. spire/pdf/PdfTextFinder.py +81 -0
  445. spire/pdf/PdfTextFragment.py +105 -0
  446. spire/pdf/PdfTextLayout.py +101 -0
  447. spire/pdf/PdfTextLayoutResult.py +33 -0
  448. spire/pdf/PdfTextMarkupAnnotation.py +126 -0
  449. spire/pdf/PdfTextMarkupAnnotationType.py +22 -0
  450. spire/pdf/PdfTextMarkupAnnotationWidget.py +53 -0
  451. spire/pdf/PdfTextReplaceOptions.py +37 -0
  452. spire/pdf/PdfTextReplacer.py +89 -0
  453. spire/pdf/PdfTextState.py +83 -0
  454. spire/pdf/PdfTextStyle.py +15 -0
  455. spire/pdf/PdfTextWebLink.py +63 -0
  456. spire/pdf/PdfTextWebLinkAnnotationWidget.py +39 -0
  457. spire/pdf/PdfTextWidget.py +227 -0
  458. spire/pdf/PdfTilingBrush.py +103 -0
  459. spire/pdf/PdfToDocConverter.py +123 -0
  460. spire/pdf/PdfToHtmlParameter.py +48 -0
  461. spire/pdf/PdfToLinearizedPdfConverter.py +65 -0
  462. spire/pdf/PdfToWordConverter.py +90 -0
  463. spire/pdf/PdfTransitionDimension.py +18 -0
  464. spire/pdf/PdfTransitionDirection.py +17 -0
  465. spire/pdf/PdfTransitionMotion.py +15 -0
  466. spire/pdf/PdfTransitionStyle.py +38 -0
  467. spire/pdf/PdfTrueTypeFont.py +58 -0
  468. spire/pdf/PdfUnidimensionalBarcode.py +173 -0
  469. spire/pdf/PdfUnitConvertor.py +151 -0
  470. spire/pdf/PdfUnorderedMarkerStyle.py +21 -0
  471. spire/pdf/PdfUriAction.py +30 -0
  472. spire/pdf/PdfUriAnnotation.py +72 -0
  473. spire/pdf/PdfUriAnnotationWidget.py +39 -0
  474. spire/pdf/PdfUsedFont.py +83 -0
  475. spire/pdf/PdfVersion.py +20 -0
  476. spire/pdf/PdfVerticalAlignment.py +16 -0
  477. spire/pdf/PdfViewerPreferences.py +162 -0
  478. spire/pdf/PdfVisibility.py +15 -0
  479. spire/pdf/PdfWatermarkAnnotation.py +86 -0
  480. spire/pdf/PdfWatermarkAnnotationWidget.py +19 -0
  481. spire/pdf/PdfWebLinkAnnotationWidget.py +21 -0
  482. spire/pdf/PdfWordWrapType.py +16 -0
  483. spire/pdf/PrintScalingMode.py +16 -0
  484. spire/pdf/ReplaceActionType.py +24 -0
  485. spire/pdf/Security_GraphicMode.py +17 -0
  486. spire/pdf/Security_IPdfSignatureFormatter.py +27 -0
  487. spire/pdf/Security_PdfSignature.py +703 -0
  488. spire/pdf/Security_SignImageLayout.py +18 -0
  489. spire/pdf/SignImageLayout.py +15 -0
  490. spire/pdf/SignInfoType.py +22 -0
  491. spire/pdf/SignTextAlignment.py +15 -0
  492. spire/pdf/SignatureConfiguerText.py +30 -0
  493. spire/pdf/SimpleTextExtractionStrategy.py +17 -0
  494. spire/pdf/StoreType.py +17 -0
  495. spire/pdf/SubmitDataFormat.py +16 -0
  496. spire/pdf/TSAHttpService.py +36 -0
  497. spire/pdf/TabOrder.py +22 -0
  498. spire/pdf/TableWidthType.py +14 -0
  499. spire/pdf/TextAlign.py +22 -0
  500. spire/pdf/TextFindParameter.py +22 -0
  501. spire/pdf/TextLocation.py +15 -0
  502. spire/pdf/Utilities_PdfImageInfo.py +68 -0
  503. spire/pdf/Utilities_PdfTable.py +48 -0
  504. spire/pdf/XFAForm.py +68 -0
  505. spire/pdf/XfaBarcodeField.py +84 -0
  506. spire/pdf/XfaButtonField.py +12 -0
  507. spire/pdf/XfaCheckButtonField.py +30 -0
  508. spire/pdf/XfaChoiceListField.py +53 -0
  509. spire/pdf/XfaDateTimeField.py +43 -0
  510. spire/pdf/XfaDoubleField.py +30 -0
  511. spire/pdf/XfaField.py +43 -0
  512. spire/pdf/XfaFloatField.py +30 -0
  513. spire/pdf/XfaImageField.py +49 -0
  514. spire/pdf/XfaIntField.py +30 -0
  515. spire/pdf/XfaSignatureField.py +12 -0
  516. spire/pdf/XfaTextField.py +30 -0
  517. spire/pdf/XlsxLineLayoutOptions.py +69 -0
  518. spire/pdf/XlsxOptions.py +12 -0
  519. spire/pdf/XlsxTextLayoutOptions.py +18 -0
  520. spire/pdf/__init__.py +699 -0
  521. spire/pdf/common/Boolean.py +194 -0
  522. spire/pdf/common/Byte.py +258 -0
  523. spire/pdf/common/Char.py +742 -0
  524. spire/pdf/common/Color.py +2189 -0
  525. spire/pdf/common/Common.py +152 -0
  526. spire/pdf/common/CultureInfo.py +567 -0
  527. spire/pdf/common/DateTime.py +1149 -0
  528. spire/pdf/common/Double.py +440 -0
  529. spire/pdf/common/EmfType.py +25 -0
  530. spire/pdf/common/Encoding.py +930 -0
  531. spire/pdf/common/FontStyle.py +27 -0
  532. spire/pdf/common/GraphicsUnit.py +29 -0
  533. spire/pdf/common/ICollection.py +73 -0
  534. spire/pdf/common/IDictionary.py +124 -0
  535. spire/pdf/common/IEnumerable.py +44 -0
  536. spire/pdf/common/IEnumerator.py +62 -0
  537. spire/pdf/common/IList.py +148 -0
  538. spire/pdf/common/Int16.py +274 -0
  539. spire/pdf/common/Int32.py +282 -0
  540. spire/pdf/common/Int64.py +258 -0
  541. spire/pdf/common/License.py +177 -0
  542. spire/pdf/common/PixelFormat.py +45 -0
  543. spire/pdf/common/Point.py +300 -0
  544. spire/pdf/common/PointF.py +276 -0
  545. spire/pdf/common/Rectangle.py +451 -0
  546. spire/pdf/common/RectangleF.py +438 -0
  547. spire/pdf/common/Regex.py +964 -0
  548. spire/pdf/common/RegexOptions.py +31 -0
  549. spire/pdf/common/Single.py +418 -0
  550. spire/pdf/common/Size.py +273 -0
  551. spire/pdf/common/SizeF.py +261 -0
  552. spire/pdf/common/SpireObject.py +81 -0
  553. spire/pdf/common/Stream.py +552 -0
  554. spire/pdf/common/String.py +1880 -0
  555. spire/pdf/common/TimeSpan.py +874 -0
  556. spire/pdf/common/UInt16.py +274 -0
  557. spire/pdf/common/UInt32.py +274 -0
  558. spire/pdf/common/UInt64.py +274 -0
  559. spire/pdf/common/__init__.py +383 -0
  560. spire/pdf/lib/Spire.Pdf.Base.dylib +0 -0
  561. spire/pdf/lib/__init__.py +0 -0
  562. spire/pdf/lib/libSkiaSharp.dylib +0 -0
  563. spire_pdf-11.6.1.dist-info/METADATA +149 -0
  564. spire_pdf-11.6.1.dist-info/RECORD +566 -0
  565. spire_pdf-11.6.1.dist-info/WHEEL +5 -0
  566. spire_pdf-11.6.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1846 @@
1
+ from enum import Enum
2
+ from plum import dispatch
3
+ from typing import TypeVar,Union,Generic,List,Tuple
4
+ from spire.pdf.common import *
5
+ from spire.pdf import *
6
+ from ctypes import *
7
+ import abc
8
+
9
+ class PdfBrushes (SpireObject) :
10
+ """
11
+ Represents the collection of immutable default brushes.
12
+ """
13
+ @staticmethod
14
+
15
+ def get_MediumPurple()->'PdfBrush':
16
+ """
17
+ Gets the MediumPurple default brush.
18
+ """
19
+ #GetDllLibPdf().PdfBrushes_get_MediumPurple.argtypes=[]
20
+ GetDllLibPdf().PdfBrushes_get_MediumPurple.restype=c_void_p
21
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumPurple)
22
+ ret = None if intPtr==None else PdfBrush(intPtr)
23
+ return ret
24
+
25
+
26
+ @staticmethod
27
+
28
+ def get_MediumSeaGreen()->'PdfBrush':
29
+ """
30
+ Gets the MediumSeaGreen default brush.
31
+ """
32
+ #GetDllLibPdf().PdfBrushes_get_MediumSeaGreen.argtypes=[]
33
+ GetDllLibPdf().PdfBrushes_get_MediumSeaGreen.restype=c_void_p
34
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumSeaGreen)
35
+ ret = None if intPtr==None else PdfBrush(intPtr)
36
+ return ret
37
+
38
+
39
+ @staticmethod
40
+
41
+ def get_MediumSlateBlue()->'PdfBrush':
42
+ """
43
+ Gets the MediumSlateBlue default brush.
44
+ """
45
+ #GetDllLibPdf().PdfBrushes_get_MediumSlateBlue.argtypes=[]
46
+ GetDllLibPdf().PdfBrushes_get_MediumSlateBlue.restype=c_void_p
47
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumSlateBlue)
48
+ ret = None if intPtr==None else PdfBrush(intPtr)
49
+ return ret
50
+
51
+
52
+ @staticmethod
53
+
54
+ def get_MediumSpringGreen()->'PdfBrush':
55
+ """
56
+ Gets the MediumSpringGreen default brush.
57
+ """
58
+ #GetDllLibPdf().PdfBrushes_get_MediumSpringGreen.argtypes=[]
59
+ GetDllLibPdf().PdfBrushes_get_MediumSpringGreen.restype=c_void_p
60
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumSpringGreen)
61
+ ret = None if intPtr==None else PdfBrush(intPtr)
62
+ return ret
63
+
64
+
65
+ @staticmethod
66
+
67
+ def get_MediumTurquoise()->'PdfBrush':
68
+ """
69
+ Gets the MediumTurquoise default brush.
70
+ """
71
+ #GetDllLibPdf().PdfBrushes_get_MediumTurquoise.argtypes=[]
72
+ GetDllLibPdf().PdfBrushes_get_MediumTurquoise.restype=c_void_p
73
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumTurquoise)
74
+ ret = None if intPtr==None else PdfBrush(intPtr)
75
+ return ret
76
+
77
+
78
+ @staticmethod
79
+
80
+ def get_MediumVioletRed()->'PdfBrush':
81
+ """
82
+ Gets the MediumVioletRed default brush.
83
+ """
84
+ #GetDllLibPdf().PdfBrushes_get_MediumVioletRed.argtypes=[]
85
+ GetDllLibPdf().PdfBrushes_get_MediumVioletRed.restype=c_void_p
86
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumVioletRed)
87
+ ret = None if intPtr==None else PdfBrush(intPtr)
88
+ return ret
89
+
90
+
91
+ @staticmethod
92
+
93
+ def get_MidnightBlue()->'PdfBrush':
94
+ """
95
+ Gets the MidnightBlue default brush.
96
+ """
97
+ #GetDllLibPdf().PdfBrushes_get_MidnightBlue.argtypes=[]
98
+ GetDllLibPdf().PdfBrushes_get_MidnightBlue.restype=c_void_p
99
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MidnightBlue)
100
+ ret = None if intPtr==None else PdfBrush(intPtr)
101
+ return ret
102
+
103
+
104
+ @staticmethod
105
+
106
+ def get_MintCream()->'PdfBrush':
107
+ """
108
+ Gets the MintCream default brush.
109
+ """
110
+ #GetDllLibPdf().PdfBrushes_get_MintCream.argtypes=[]
111
+ GetDllLibPdf().PdfBrushes_get_MintCream.restype=c_void_p
112
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MintCream)
113
+ ret = None if intPtr==None else PdfBrush(intPtr)
114
+ return ret
115
+
116
+
117
+ @staticmethod
118
+
119
+ def get_MistyRose()->'PdfBrush':
120
+ """
121
+ Gets the MistyRose default brush.
122
+ """
123
+ #GetDllLibPdf().PdfBrushes_get_MistyRose.argtypes=[]
124
+ GetDllLibPdf().PdfBrushes_get_MistyRose.restype=c_void_p
125
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MistyRose)
126
+ ret = None if intPtr==None else PdfBrush(intPtr)
127
+ return ret
128
+
129
+
130
+ @staticmethod
131
+
132
+ def get_Moccasin()->'PdfBrush':
133
+ """
134
+ Gets the Moccasin default brush.
135
+ """
136
+ #GetDllLibPdf().PdfBrushes_get_Moccasin.argtypes=[]
137
+ GetDllLibPdf().PdfBrushes_get_Moccasin.restype=c_void_p
138
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Moccasin)
139
+ ret = None if intPtr==None else PdfBrush(intPtr)
140
+ return ret
141
+
142
+
143
+ @staticmethod
144
+
145
+ def get_NavajoWhite()->'PdfBrush':
146
+ """
147
+ Gets the NavajoWhite default brush.
148
+ """
149
+ #GetDllLibPdf().PdfBrushes_get_NavajoWhite.argtypes=[]
150
+ GetDllLibPdf().PdfBrushes_get_NavajoWhite.restype=c_void_p
151
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_NavajoWhite)
152
+ ret = None if intPtr==None else PdfBrush(intPtr)
153
+ return ret
154
+
155
+
156
+ @staticmethod
157
+
158
+ def get_Navy()->'PdfBrush':
159
+ """
160
+ Gets the Navy default brush.
161
+ """
162
+ #GetDllLibPdf().PdfBrushes_get_Navy.argtypes=[]
163
+ GetDllLibPdf().PdfBrushes_get_Navy.restype=c_void_p
164
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Navy)
165
+ ret = None if intPtr==None else PdfBrush(intPtr)
166
+ return ret
167
+
168
+
169
+ @staticmethod
170
+
171
+ def get_OldLace()->'PdfBrush':
172
+ """
173
+ Gets the OldLace default brush.
174
+ """
175
+ #GetDllLibPdf().PdfBrushes_get_OldLace.argtypes=[]
176
+ GetDllLibPdf().PdfBrushes_get_OldLace.restype=c_void_p
177
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_OldLace)
178
+ ret = None if intPtr==None else PdfBrush(intPtr)
179
+ return ret
180
+
181
+
182
+ @staticmethod
183
+
184
+ def get_Olive()->'PdfBrush':
185
+ """
186
+ Gets the Olive default brush.
187
+ """
188
+ #GetDllLibPdf().PdfBrushes_get_Olive.argtypes=[]
189
+ GetDllLibPdf().PdfBrushes_get_Olive.restype=c_void_p
190
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Olive)
191
+ ret = None if intPtr==None else PdfBrush(intPtr)
192
+ return ret
193
+
194
+
195
+ @staticmethod
196
+
197
+ def get_OliveDrab()->'PdfBrush':
198
+ """
199
+ Gets the OliveDrab default brush.
200
+ """
201
+ #GetDllLibPdf().PdfBrushes_get_OliveDrab.argtypes=[]
202
+ GetDllLibPdf().PdfBrushes_get_OliveDrab.restype=c_void_p
203
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_OliveDrab)
204
+ ret = None if intPtr==None else PdfBrush(intPtr)
205
+ return ret
206
+
207
+
208
+ @staticmethod
209
+
210
+ def get_Orange()->'PdfBrush':
211
+ """
212
+ Gets the Orange default brush.
213
+ """
214
+ #GetDllLibPdf().PdfBrushes_get_Orange.argtypes=[]
215
+ GetDllLibPdf().PdfBrushes_get_Orange.restype=c_void_p
216
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Orange)
217
+ ret = None if intPtr==None else PdfBrush(intPtr)
218
+ return ret
219
+
220
+
221
+ @staticmethod
222
+
223
+ def get_OrangeRed()->'PdfBrush':
224
+ """
225
+ Gets the OrangeRed default brush.
226
+ """
227
+ #GetDllLibPdf().PdfBrushes_get_OrangeRed.argtypes=[]
228
+ GetDllLibPdf().PdfBrushes_get_OrangeRed.restype=c_void_p
229
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_OrangeRed)
230
+ ret = None if intPtr==None else PdfBrush(intPtr)
231
+ return ret
232
+
233
+
234
+ @staticmethod
235
+
236
+ def get_Orchid()->'PdfBrush':
237
+ """
238
+ Gets the Orchid default brush.
239
+ """
240
+ #GetDllLibPdf().PdfBrushes_get_Orchid.argtypes=[]
241
+ GetDllLibPdf().PdfBrushes_get_Orchid.restype=c_void_p
242
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Orchid)
243
+ ret = None if intPtr==None else PdfBrush(intPtr)
244
+ return ret
245
+
246
+
247
+ @staticmethod
248
+
249
+ def get_PaleGoldenrod()->'PdfBrush':
250
+ """
251
+ Gets the PaleGoldenrod default brush.
252
+ """
253
+ #GetDllLibPdf().PdfBrushes_get_PaleGoldenrod.argtypes=[]
254
+ GetDllLibPdf().PdfBrushes_get_PaleGoldenrod.restype=c_void_p
255
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_PaleGoldenrod)
256
+ ret = None if intPtr==None else PdfBrush(intPtr)
257
+ return ret
258
+
259
+
260
+ @staticmethod
261
+
262
+ def get_PaleGreen()->'PdfBrush':
263
+ """
264
+ Gets the PaleGreen default brush.
265
+ """
266
+ #GetDllLibPdf().PdfBrushes_get_PaleGreen.argtypes=[]
267
+ GetDllLibPdf().PdfBrushes_get_PaleGreen.restype=c_void_p
268
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_PaleGreen)
269
+ ret = None if intPtr==None else PdfBrush(intPtr)
270
+ return ret
271
+
272
+
273
+ @staticmethod
274
+
275
+ def get_PaleTurquoise()->'PdfBrush':
276
+ """
277
+ Gets the PaleTurquoise default brush.
278
+ """
279
+ #GetDllLibPdf().PdfBrushes_get_PaleTurquoise.argtypes=[]
280
+ GetDllLibPdf().PdfBrushes_get_PaleTurquoise.restype=c_void_p
281
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_PaleTurquoise)
282
+ ret = None if intPtr==None else PdfBrush(intPtr)
283
+ return ret
284
+
285
+
286
+ @staticmethod
287
+
288
+ def get_PaleVioletRed()->'PdfBrush':
289
+ """
290
+ Gets the PaleVioletRed default brush.
291
+ """
292
+ #GetDllLibPdf().PdfBrushes_get_PaleVioletRed.argtypes=[]
293
+ GetDllLibPdf().PdfBrushes_get_PaleVioletRed.restype=c_void_p
294
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_PaleVioletRed)
295
+ ret = None if intPtr==None else PdfBrush(intPtr)
296
+ return ret
297
+
298
+
299
+ @staticmethod
300
+
301
+ def get_PapayaWhip()->'PdfBrush':
302
+ """
303
+ Gets the PapayaWhip default brush.
304
+ """
305
+ #GetDllLibPdf().PdfBrushes_get_PapayaWhip.argtypes=[]
306
+ GetDllLibPdf().PdfBrushes_get_PapayaWhip.restype=c_void_p
307
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_PapayaWhip)
308
+ ret = None if intPtr==None else PdfBrush(intPtr)
309
+ return ret
310
+
311
+
312
+ @staticmethod
313
+
314
+ def get_PeachPuff()->'PdfBrush':
315
+ """
316
+ Gets the PeachPuff default brush.
317
+ """
318
+ #GetDllLibPdf().PdfBrushes_get_PeachPuff.argtypes=[]
319
+ GetDllLibPdf().PdfBrushes_get_PeachPuff.restype=c_void_p
320
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_PeachPuff)
321
+ ret = None if intPtr==None else PdfBrush(intPtr)
322
+ return ret
323
+
324
+
325
+ @staticmethod
326
+
327
+ def get_Peru()->'PdfBrush':
328
+ """
329
+ Gets the Peru default brush.
330
+ """
331
+ #GetDllLibPdf().PdfBrushes_get_Peru.argtypes=[]
332
+ GetDllLibPdf().PdfBrushes_get_Peru.restype=c_void_p
333
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Peru)
334
+ ret = None if intPtr==None else PdfBrush(intPtr)
335
+ return ret
336
+
337
+
338
+ @staticmethod
339
+
340
+ def get_Pink()->'PdfBrush':
341
+ """
342
+ Gets the Pink default brush.
343
+ """
344
+ #GetDllLibPdf().PdfBrushes_get_Pink.argtypes=[]
345
+ GetDllLibPdf().PdfBrushes_get_Pink.restype=c_void_p
346
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Pink)
347
+ ret = None if intPtr==None else PdfBrush(intPtr)
348
+ return ret
349
+
350
+
351
+ @staticmethod
352
+
353
+ def get_Plum()->'PdfBrush':
354
+ """
355
+ Gets the Plum default brush.
356
+ """
357
+ #GetDllLibPdf().PdfBrushes_get_Plum.argtypes=[]
358
+ GetDllLibPdf().PdfBrushes_get_Plum.restype=c_void_p
359
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Plum)
360
+ ret = None if intPtr==None else PdfBrush(intPtr)
361
+ return ret
362
+
363
+
364
+ @staticmethod
365
+
366
+ def get_PowderBlue()->'PdfBrush':
367
+ """
368
+ Gets the PowderBlue default brush.
369
+ """
370
+ #GetDllLibPdf().PdfBrushes_get_PowderBlue.argtypes=[]
371
+ GetDllLibPdf().PdfBrushes_get_PowderBlue.restype=c_void_p
372
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_PowderBlue)
373
+ ret = None if intPtr==None else PdfBrush(intPtr)
374
+ return ret
375
+
376
+
377
+ @staticmethod
378
+
379
+ def get_Purple()->'PdfBrush':
380
+ """
381
+ Gets the Purple default brush.
382
+ """
383
+ #GetDllLibPdf().PdfBrushes_get_Purple.argtypes=[]
384
+ GetDllLibPdf().PdfBrushes_get_Purple.restype=c_void_p
385
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Purple)
386
+ ret = None if intPtr==None else PdfBrush(intPtr)
387
+ return ret
388
+
389
+
390
+ @staticmethod
391
+
392
+ def get_Red()->'PdfBrush':
393
+ """
394
+ Gets the Red default brush.
395
+ """
396
+ #GetDllLibPdf().PdfBrushes_get_Red.argtypes=[]
397
+ GetDllLibPdf().PdfBrushes_get_Red.restype=c_void_p
398
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Red)
399
+ ret = None if intPtr==None else PdfBrush(intPtr)
400
+ return ret
401
+
402
+
403
+ @staticmethod
404
+
405
+ def get_RosyBrown()->'PdfBrush':
406
+ """
407
+ Gets the RosyBrown default brush.
408
+ """
409
+ #GetDllLibPdf().PdfBrushes_get_RosyBrown.argtypes=[]
410
+ GetDllLibPdf().PdfBrushes_get_RosyBrown.restype=c_void_p
411
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_RosyBrown)
412
+ ret = None if intPtr==None else PdfBrush(intPtr)
413
+ return ret
414
+
415
+
416
+ @staticmethod
417
+
418
+ def get_RoyalBlue()->'PdfBrush':
419
+ """
420
+ Gets the RoyalBlue default brush.
421
+ """
422
+ #GetDllLibPdf().PdfBrushes_get_RoyalBlue.argtypes=[]
423
+ GetDllLibPdf().PdfBrushes_get_RoyalBlue.restype=c_void_p
424
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_RoyalBlue)
425
+ ret = None if intPtr==None else PdfBrush(intPtr)
426
+ return ret
427
+
428
+
429
+ @staticmethod
430
+
431
+ def get_SaddleBrown()->'PdfBrush':
432
+ """
433
+ Gets the SaddleBrown default brush.
434
+ """
435
+ #GetDllLibPdf().PdfBrushes_get_SaddleBrown.argtypes=[]
436
+ GetDllLibPdf().PdfBrushes_get_SaddleBrown.restype=c_void_p
437
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SaddleBrown)
438
+ ret = None if intPtr==None else PdfBrush(intPtr)
439
+ return ret
440
+
441
+
442
+ @staticmethod
443
+
444
+ def get_Salmon()->'PdfBrush':
445
+ """
446
+ Gets the Salmon default brush.
447
+ """
448
+ #GetDllLibPdf().PdfBrushes_get_Salmon.argtypes=[]
449
+ GetDllLibPdf().PdfBrushes_get_Salmon.restype=c_void_p
450
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Salmon)
451
+ ret = None if intPtr==None else PdfBrush(intPtr)
452
+ return ret
453
+
454
+
455
+ @staticmethod
456
+
457
+ def get_SandyBrown()->'PdfBrush':
458
+ """
459
+ Gets the SandyBrown default brush.
460
+ """
461
+ #GetDllLibPdf().PdfBrushes_get_SandyBrown.argtypes=[]
462
+ GetDllLibPdf().PdfBrushes_get_SandyBrown.restype=c_void_p
463
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SandyBrown)
464
+ ret = None if intPtr==None else PdfBrush(intPtr)
465
+ return ret
466
+
467
+
468
+ @staticmethod
469
+
470
+ def get_SeaGreen()->'PdfBrush':
471
+ """
472
+ Gets the SeaGreen default brush.
473
+ """
474
+ #GetDllLibPdf().PdfBrushes_get_SeaGreen.argtypes=[]
475
+ GetDllLibPdf().PdfBrushes_get_SeaGreen.restype=c_void_p
476
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SeaGreen)
477
+ ret = None if intPtr==None else PdfBrush(intPtr)
478
+ return ret
479
+
480
+
481
+ @staticmethod
482
+
483
+ def get_SeaShell()->'PdfBrush':
484
+ """
485
+ Gets the SeaShell default brush.
486
+ """
487
+ #GetDllLibPdf().PdfBrushes_get_SeaShell.argtypes=[]
488
+ GetDllLibPdf().PdfBrushes_get_SeaShell.restype=c_void_p
489
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SeaShell)
490
+ ret = None if intPtr==None else PdfBrush(intPtr)
491
+ return ret
492
+
493
+
494
+ @staticmethod
495
+
496
+ def get_Sienna()->'PdfBrush':
497
+ """
498
+ Gets the Sienna default brush.
499
+ """
500
+ #GetDllLibPdf().PdfBrushes_get_Sienna.argtypes=[]
501
+ GetDllLibPdf().PdfBrushes_get_Sienna.restype=c_void_p
502
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Sienna)
503
+ ret = None if intPtr==None else PdfBrush(intPtr)
504
+ return ret
505
+
506
+
507
+ @staticmethod
508
+
509
+ def get_Silver()->'PdfBrush':
510
+ """
511
+ Gets the Silver default brush.
512
+ """
513
+ #GetDllLibPdf().PdfBrushes_get_Silver.argtypes=[]
514
+ GetDllLibPdf().PdfBrushes_get_Silver.restype=c_void_p
515
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Silver)
516
+ ret = None if intPtr==None else PdfBrush(intPtr)
517
+ return ret
518
+
519
+
520
+ @staticmethod
521
+
522
+ def get_SkyBlue()->'PdfBrush':
523
+ """
524
+ Gets the SkyBlue default brush.
525
+ """
526
+ #GetDllLibPdf().PdfBrushes_get_SkyBlue.argtypes=[]
527
+ GetDllLibPdf().PdfBrushes_get_SkyBlue.restype=c_void_p
528
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SkyBlue)
529
+ ret = None if intPtr==None else PdfBrush(intPtr)
530
+ return ret
531
+
532
+
533
+ @staticmethod
534
+
535
+ def get_SlateBlue()->'PdfBrush':
536
+ """
537
+ Gets the SlateBlue default brush.
538
+ """
539
+ #GetDllLibPdf().PdfBrushes_get_SlateBlue.argtypes=[]
540
+ GetDllLibPdf().PdfBrushes_get_SlateBlue.restype=c_void_p
541
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SlateBlue)
542
+ ret = None if intPtr==None else PdfBrush(intPtr)
543
+ return ret
544
+
545
+
546
+ @staticmethod
547
+
548
+ def get_SlateGray()->'PdfBrush':
549
+ """
550
+ Gets the SlateGray default brush.
551
+ """
552
+ #GetDllLibPdf().PdfBrushes_get_SlateGray.argtypes=[]
553
+ GetDllLibPdf().PdfBrushes_get_SlateGray.restype=c_void_p
554
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SlateGray)
555
+ ret = None if intPtr==None else PdfBrush(intPtr)
556
+ return ret
557
+
558
+
559
+ @staticmethod
560
+
561
+ def get_Snow()->'PdfBrush':
562
+ """
563
+ Gets the Snow default brush.
564
+ """
565
+ #GetDllLibPdf().PdfBrushes_get_Snow.argtypes=[]
566
+ GetDllLibPdf().PdfBrushes_get_Snow.restype=c_void_p
567
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Snow)
568
+ ret = None if intPtr==None else PdfBrush(intPtr)
569
+ return ret
570
+
571
+
572
+ @staticmethod
573
+
574
+ def get_SpringGreen()->'PdfBrush':
575
+ """
576
+ Gets the SpringGreen default brush.
577
+ """
578
+ #GetDllLibPdf().PdfBrushes_get_SpringGreen.argtypes=[]
579
+ GetDllLibPdf().PdfBrushes_get_SpringGreen.restype=c_void_p
580
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SpringGreen)
581
+ ret = None if intPtr==None else PdfBrush(intPtr)
582
+ return ret
583
+
584
+
585
+ @staticmethod
586
+
587
+ def get_SteelBlue()->'PdfBrush':
588
+ """
589
+ Gets the SteelBlue default brush.
590
+ """
591
+ #GetDllLibPdf().PdfBrushes_get_SteelBlue.argtypes=[]
592
+ GetDllLibPdf().PdfBrushes_get_SteelBlue.restype=c_void_p
593
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_SteelBlue)
594
+ ret = None if intPtr==None else PdfBrush(intPtr)
595
+ return ret
596
+
597
+
598
+ @staticmethod
599
+
600
+ def get_Tan()->'PdfBrush':
601
+ """
602
+ Gets the Tan default brush.
603
+ """
604
+ #GetDllLibPdf().PdfBrushes_get_Tan.argtypes=[]
605
+ GetDllLibPdf().PdfBrushes_get_Tan.restype=c_void_p
606
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Tan)
607
+ ret = None if intPtr==None else PdfBrush(intPtr)
608
+ return ret
609
+
610
+
611
+ @staticmethod
612
+
613
+ def get_Teal()->'PdfBrush':
614
+ """
615
+ Gets the Teal default brush.
616
+ """
617
+ #GetDllLibPdf().PdfBrushes_get_Teal.argtypes=[]
618
+ GetDllLibPdf().PdfBrushes_get_Teal.restype=c_void_p
619
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Teal)
620
+ ret = None if intPtr==None else PdfBrush(intPtr)
621
+ return ret
622
+
623
+
624
+ @staticmethod
625
+
626
+ def get_Thistle()->'PdfBrush':
627
+ """
628
+ Gets the Thistle default brush.
629
+ """
630
+ #GetDllLibPdf().PdfBrushes_get_Thistle.argtypes=[]
631
+ GetDllLibPdf().PdfBrushes_get_Thistle.restype=c_void_p
632
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Thistle)
633
+ ret = None if intPtr==None else PdfBrush(intPtr)
634
+ return ret
635
+
636
+
637
+ @staticmethod
638
+
639
+ def get_Tomato()->'PdfBrush':
640
+ """
641
+ Gets the Tomato default brush.
642
+ """
643
+ #GetDllLibPdf().PdfBrushes_get_Tomato.argtypes=[]
644
+ GetDllLibPdf().PdfBrushes_get_Tomato.restype=c_void_p
645
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Tomato)
646
+ ret = None if intPtr==None else PdfBrush(intPtr)
647
+ return ret
648
+
649
+
650
+ @staticmethod
651
+
652
+ def get_Transparent()->'PdfBrush':
653
+ """
654
+ Gets the Transparent default brush.
655
+ """
656
+ #GetDllLibPdf().PdfBrushes_get_Transparent.argtypes=[]
657
+ GetDllLibPdf().PdfBrushes_get_Transparent.restype=c_void_p
658
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Transparent)
659
+ ret = None if intPtr==None else PdfBrush(intPtr)
660
+ return ret
661
+
662
+
663
+ @staticmethod
664
+
665
+ def get_Turquoise()->'PdfBrush':
666
+ """
667
+ Gets the Turquoise default brush.
668
+ """
669
+ #GetDllLibPdf().PdfBrushes_get_Turquoise.argtypes=[]
670
+ GetDllLibPdf().PdfBrushes_get_Turquoise.restype=c_void_p
671
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Turquoise)
672
+ ret = None if intPtr==None else PdfBrush(intPtr)
673
+ return ret
674
+
675
+
676
+ @staticmethod
677
+
678
+ def get_Violet()->'PdfBrush':
679
+ """
680
+ Gets the Violet default brush.
681
+ """
682
+ #GetDllLibPdf().PdfBrushes_get_Violet.argtypes=[]
683
+ GetDllLibPdf().PdfBrushes_get_Violet.restype=c_void_p
684
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Violet)
685
+ ret = None if intPtr==None else PdfBrush(intPtr)
686
+ return ret
687
+
688
+
689
+ @staticmethod
690
+
691
+ def get_Wheat()->'PdfBrush':
692
+ """
693
+ Gets the Wheat default brush.
694
+ """
695
+ #GetDllLibPdf().PdfBrushes_get_Wheat.argtypes=[]
696
+ GetDllLibPdf().PdfBrushes_get_Wheat.restype=c_void_p
697
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Wheat)
698
+ ret = None if intPtr==None else PdfBrush(intPtr)
699
+ return ret
700
+
701
+
702
+ @staticmethod
703
+
704
+ def get_White()->'PdfBrush':
705
+ """
706
+ Gets the White default brush.
707
+ """
708
+ #GetDllLibPdf().PdfBrushes_get_White.argtypes=[]
709
+ GetDllLibPdf().PdfBrushes_get_White.restype=c_void_p
710
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_White)
711
+ ret = None if intPtr==None else PdfBrush(intPtr)
712
+ return ret
713
+
714
+
715
+ @staticmethod
716
+
717
+ def get_WhiteSmoke()->'PdfBrush':
718
+ """
719
+ Gets the WhiteSmoke default brush.
720
+ """
721
+ #GetDllLibPdf().PdfBrushes_get_WhiteSmoke.argtypes=[]
722
+ GetDllLibPdf().PdfBrushes_get_WhiteSmoke.restype=c_void_p
723
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_WhiteSmoke)
724
+ ret = None if intPtr==None else PdfBrush(intPtr)
725
+ return ret
726
+
727
+
728
+ @staticmethod
729
+
730
+ def get_Yellow()->'PdfBrush':
731
+ """
732
+ Gets the Yellow default brush.
733
+ """
734
+ #GetDllLibPdf().PdfBrushes_get_Yellow.argtypes=[]
735
+ GetDllLibPdf().PdfBrushes_get_Yellow.restype=c_void_p
736
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Yellow)
737
+ ret = None if intPtr==None else PdfBrush(intPtr)
738
+ return ret
739
+
740
+
741
+ @staticmethod
742
+
743
+ def get_YellowGreen()->'PdfBrush':
744
+ """
745
+
746
+ Gets the YellowGreen default brush.
747
+ """
748
+ #GetDllLibPdf().PdfBrushes_get_YellowGreen.argtypes=[]
749
+ GetDllLibPdf().PdfBrushes_get_YellowGreen.restype=c_void_p
750
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_YellowGreen)
751
+ ret = None if intPtr==None else PdfBrush(intPtr)
752
+ return ret
753
+
754
+
755
+ @staticmethod
756
+
757
+ def get_AliceBlue()->'PdfBrush':
758
+ """
759
+ Gets the AliceBlue brush.
760
+ """
761
+ #GetDllLibPdf().PdfBrushes_get_AliceBlue.argtypes=[]
762
+ GetDllLibPdf().PdfBrushes_get_AliceBlue.restype=c_void_p
763
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_AliceBlue)
764
+ ret = None if intPtr==None else PdfBrush(intPtr)
765
+ return ret
766
+
767
+
768
+ @staticmethod
769
+
770
+ def get_AntiqueWhite()->'PdfBrush':
771
+ """
772
+ Gets the antique white brush.
773
+ """
774
+ #GetDllLibPdf().PdfBrushes_get_AntiqueWhite.argtypes=[]
775
+ GetDllLibPdf().PdfBrushes_get_AntiqueWhite.restype=c_void_p
776
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_AntiqueWhite)
777
+ ret = None if intPtr==None else PdfBrush(intPtr)
778
+ return ret
779
+
780
+
781
+ @staticmethod
782
+
783
+ def get_Aqua()->'PdfBrush':
784
+ """
785
+ Gets the Aqua default brush.
786
+ """
787
+ #GetDllLibPdf().PdfBrushes_get_Aqua.argtypes=[]
788
+ GetDllLibPdf().PdfBrushes_get_Aqua.restype=c_void_p
789
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Aqua)
790
+ ret = None if intPtr==None else PdfBrush(intPtr)
791
+ return ret
792
+
793
+
794
+ @staticmethod
795
+
796
+ def get_Aquamarine()->'PdfBrush':
797
+ """
798
+ Gets the Aquamarine default brush.
799
+ """
800
+ #GetDllLibPdf().PdfBrushes_get_Aquamarine.argtypes=[]
801
+ GetDllLibPdf().PdfBrushes_get_Aquamarine.restype=c_void_p
802
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Aquamarine)
803
+ ret = None if intPtr==None else PdfBrush(intPtr)
804
+ return ret
805
+
806
+
807
+ @staticmethod
808
+
809
+ def get_Azure()->'PdfBrush':
810
+ """
811
+ Gets the Azure default brush.
812
+ """
813
+ #GetDllLibPdf().PdfBrushes_get_Azure.argtypes=[]
814
+ GetDllLibPdf().PdfBrushes_get_Azure.restype=c_void_p
815
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Azure)
816
+ ret = None if intPtr==None else PdfBrush(intPtr)
817
+ return ret
818
+
819
+
820
+ @staticmethod
821
+
822
+ def get_Beige()->'PdfBrush':
823
+ """
824
+ Gets the Beige default brush.
825
+ """
826
+ #GetDllLibPdf().PdfBrushes_get_Beige.argtypes=[]
827
+ GetDllLibPdf().PdfBrushes_get_Beige.restype=c_void_p
828
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Beige)
829
+ ret = None if intPtr==None else PdfBrush(intPtr)
830
+ return ret
831
+
832
+
833
+ @staticmethod
834
+
835
+ def get_Bisque()->'PdfBrush':
836
+ """
837
+ Gets the Bisque default brush.
838
+ """
839
+ #GetDllLibPdf().PdfBrushes_get_Bisque.argtypes=[]
840
+ GetDllLibPdf().PdfBrushes_get_Bisque.restype=c_void_p
841
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Bisque)
842
+ ret = None if intPtr==None else PdfBrush(intPtr)
843
+ return ret
844
+
845
+
846
+ @staticmethod
847
+
848
+ def get_Black()->'PdfBrush':
849
+ """
850
+ Gets the Black default brush.
851
+ """
852
+ #GetDllLibPdf().PdfBrushes_get_Black.argtypes=[]
853
+ GetDllLibPdf().PdfBrushes_get_Black.restype=c_void_p
854
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Black)
855
+ ret = None if intPtr==None else PdfBrush(intPtr)
856
+ return ret
857
+
858
+
859
+ @staticmethod
860
+
861
+ def get_BlanchedAlmond()->'PdfBrush':
862
+ """
863
+ Gets the BlanchedAlmond default brush.
864
+ """
865
+ #GetDllLibPdf().PdfBrushes_get_BlanchedAlmond.argtypes=[]
866
+ GetDllLibPdf().PdfBrushes_get_BlanchedAlmond.restype=c_void_p
867
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_BlanchedAlmond)
868
+ ret = None if intPtr==None else PdfBrush(intPtr)
869
+ return ret
870
+
871
+
872
+ @staticmethod
873
+
874
+ def get_Blue()->'PdfBrush':
875
+ """
876
+ Gets the Blue default brush.
877
+ """
878
+ #GetDllLibPdf().PdfBrushes_get_Blue.argtypes=[]
879
+ GetDllLibPdf().PdfBrushes_get_Blue.restype=c_void_p
880
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Blue)
881
+ ret = None if intPtr==None else PdfBrush(intPtr)
882
+ return ret
883
+
884
+
885
+ @staticmethod
886
+
887
+ def get_BlueViolet()->'PdfBrush':
888
+ """
889
+ Gets the BlueViolet default brush.
890
+ """
891
+ #GetDllLibPdf().PdfBrushes_get_BlueViolet.argtypes=[]
892
+ GetDllLibPdf().PdfBrushes_get_BlueViolet.restype=c_void_p
893
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_BlueViolet)
894
+ ret = None if intPtr==None else PdfBrush(intPtr)
895
+ return ret
896
+
897
+
898
+ @staticmethod
899
+
900
+ def get_Brown()->'PdfBrush':
901
+ """
902
+ Gets the Brown default brush.
903
+ """
904
+ #GetDllLibPdf().PdfBrushes_get_Brown.argtypes=[]
905
+ GetDllLibPdf().PdfBrushes_get_Brown.restype=c_void_p
906
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Brown)
907
+ ret = None if intPtr==None else PdfBrush(intPtr)
908
+ return ret
909
+
910
+
911
+ @staticmethod
912
+
913
+ def get_BurlyWood()->'PdfBrush':
914
+ """
915
+ Gets the BurlyWood default brush.
916
+ """
917
+ #GetDllLibPdf().PdfBrushes_get_BurlyWood.argtypes=[]
918
+ GetDllLibPdf().PdfBrushes_get_BurlyWood.restype=c_void_p
919
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_BurlyWood)
920
+ ret = None if intPtr==None else PdfBrush(intPtr)
921
+ return ret
922
+
923
+
924
+ @staticmethod
925
+
926
+ def get_CadetBlue()->'PdfBrush':
927
+ """
928
+ Gets the CadetBlue default brush.
929
+ """
930
+ #GetDllLibPdf().PdfBrushes_get_CadetBlue.argtypes=[]
931
+ GetDllLibPdf().PdfBrushes_get_CadetBlue.restype=c_void_p
932
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_CadetBlue)
933
+ ret = None if intPtr==None else PdfBrush(intPtr)
934
+ return ret
935
+
936
+
937
+ @staticmethod
938
+
939
+ def get_Chartreuse()->'PdfBrush':
940
+ """
941
+ Gets the Chartreuse default brush.
942
+ """
943
+ #GetDllLibPdf().PdfBrushes_get_Chartreuse.argtypes=[]
944
+ GetDllLibPdf().PdfBrushes_get_Chartreuse.restype=c_void_p
945
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Chartreuse)
946
+ ret = None if intPtr==None else PdfBrush(intPtr)
947
+ return ret
948
+
949
+
950
+ @staticmethod
951
+
952
+ def get_Chocolate()->'PdfBrush':
953
+ """
954
+ Gets the Chocolate default brush.
955
+ """
956
+ #GetDllLibPdf().PdfBrushes_get_Chocolate.argtypes=[]
957
+ GetDllLibPdf().PdfBrushes_get_Chocolate.restype=c_void_p
958
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Chocolate)
959
+ ret = None if intPtr==None else PdfBrush(intPtr)
960
+ return ret
961
+
962
+
963
+ @staticmethod
964
+
965
+ def get_Coral()->'PdfBrush':
966
+ """
967
+ Gets the Coral default brush.
968
+ """
969
+ #GetDllLibPdf().PdfBrushes_get_Coral.argtypes=[]
970
+ GetDllLibPdf().PdfBrushes_get_Coral.restype=c_void_p
971
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Coral)
972
+ ret = None if intPtr==None else PdfBrush(intPtr)
973
+ return ret
974
+
975
+
976
+ @staticmethod
977
+
978
+ def get_CornflowerBlue()->'PdfBrush':
979
+ """
980
+ Gets the CornflowerBlue default brush.
981
+ """
982
+ #GetDllLibPdf().PdfBrushes_get_CornflowerBlue.argtypes=[]
983
+ GetDllLibPdf().PdfBrushes_get_CornflowerBlue.restype=c_void_p
984
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_CornflowerBlue)
985
+ ret = None if intPtr==None else PdfBrush(intPtr)
986
+ return ret
987
+
988
+
989
+ @staticmethod
990
+
991
+ def get_Cornsilk()->'PdfBrush':
992
+ """
993
+ Gets the Corn silk default brush.
994
+ """
995
+ #GetDllLibPdf().PdfBrushes_get_Cornsilk.argtypes=[]
996
+ GetDllLibPdf().PdfBrushes_get_Cornsilk.restype=c_void_p
997
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Cornsilk)
998
+ ret = None if intPtr==None else PdfBrush(intPtr)
999
+ return ret
1000
+
1001
+
1002
+ @staticmethod
1003
+
1004
+ def get_Crimson()->'PdfBrush':
1005
+ """
1006
+ Gets the Crimson default brush.
1007
+ """
1008
+ #GetDllLibPdf().PdfBrushes_get_Crimson.argtypes=[]
1009
+ GetDllLibPdf().PdfBrushes_get_Crimson.restype=c_void_p
1010
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Crimson)
1011
+ ret = None if intPtr==None else PdfBrush(intPtr)
1012
+ return ret
1013
+
1014
+
1015
+ @staticmethod
1016
+
1017
+ def get_Cyan()->'PdfBrush':
1018
+ """
1019
+ Gets the Cyan default brush.
1020
+ """
1021
+ #GetDllLibPdf().PdfBrushes_get_Cyan.argtypes=[]
1022
+ GetDllLibPdf().PdfBrushes_get_Cyan.restype=c_void_p
1023
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Cyan)
1024
+ ret = None if intPtr==None else PdfBrush(intPtr)
1025
+ return ret
1026
+
1027
+
1028
+ @staticmethod
1029
+
1030
+ def get_DarkBlue()->'PdfBrush':
1031
+ """
1032
+ Gets the DarkBlue default brush.
1033
+ """
1034
+ #GetDllLibPdf().PdfBrushes_get_DarkBlue.argtypes=[]
1035
+ GetDllLibPdf().PdfBrushes_get_DarkBlue.restype=c_void_p
1036
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkBlue)
1037
+ ret = None if intPtr==None else PdfBrush(intPtr)
1038
+ return ret
1039
+
1040
+
1041
+ @staticmethod
1042
+
1043
+ def get_DarkCyan()->'PdfBrush':
1044
+ """
1045
+ Gets the DarkCyan default brush.
1046
+ """
1047
+ #GetDllLibPdf().PdfBrushes_get_DarkCyan.argtypes=[]
1048
+ GetDllLibPdf().PdfBrushes_get_DarkCyan.restype=c_void_p
1049
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkCyan)
1050
+ ret = None if intPtr==None else PdfBrush(intPtr)
1051
+ return ret
1052
+
1053
+
1054
+ @staticmethod
1055
+
1056
+ def get_DarkGoldenrod()->'PdfBrush':
1057
+ """
1058
+ Gets the DarkGoldenrod default brush.
1059
+ """
1060
+ #GetDllLibPdf().PdfBrushes_get_DarkGoldenrod.argtypes=[]
1061
+ GetDllLibPdf().PdfBrushes_get_DarkGoldenrod.restype=c_void_p
1062
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkGoldenrod)
1063
+ ret = None if intPtr==None else PdfBrush(intPtr)
1064
+ return ret
1065
+
1066
+
1067
+ @staticmethod
1068
+
1069
+ def get_DarkGray()->'PdfBrush':
1070
+ """
1071
+ Gets the DarkGray default brush.
1072
+ """
1073
+ #GetDllLibPdf().PdfBrushes_get_DarkGray.argtypes=[]
1074
+ GetDllLibPdf().PdfBrushes_get_DarkGray.restype=c_void_p
1075
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkGray)
1076
+ ret = None if intPtr==None else PdfBrush(intPtr)
1077
+ return ret
1078
+
1079
+
1080
+ @staticmethod
1081
+
1082
+ def get_DarkGreen()->'PdfBrush':
1083
+ """
1084
+ Gets the DarkGreen default brush.
1085
+ """
1086
+ #GetDllLibPdf().PdfBrushes_get_DarkGreen.argtypes=[]
1087
+ GetDllLibPdf().PdfBrushes_get_DarkGreen.restype=c_void_p
1088
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkGreen)
1089
+ ret = None if intPtr==None else PdfBrush(intPtr)
1090
+ return ret
1091
+
1092
+
1093
+ @staticmethod
1094
+
1095
+ def get_DarkKhaki()->'PdfBrush':
1096
+ """
1097
+ Gets the DarkKhaki default brush.
1098
+ """
1099
+ #GetDllLibPdf().PdfBrushes_get_DarkKhaki.argtypes=[]
1100
+ GetDllLibPdf().PdfBrushes_get_DarkKhaki.restype=c_void_p
1101
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkKhaki)
1102
+ ret = None if intPtr==None else PdfBrush(intPtr)
1103
+ return ret
1104
+
1105
+
1106
+ @staticmethod
1107
+
1108
+ def get_DarkMagenta()->'PdfBrush':
1109
+ """
1110
+ Gets the DarkMagenta default brush.
1111
+ """
1112
+ #GetDllLibPdf().PdfBrushes_get_DarkMagenta.argtypes=[]
1113
+ GetDllLibPdf().PdfBrushes_get_DarkMagenta.restype=c_void_p
1114
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkMagenta)
1115
+ ret = None if intPtr==None else PdfBrush(intPtr)
1116
+ return ret
1117
+
1118
+
1119
+ @staticmethod
1120
+
1121
+ def get_DarkOliveGreen()->'PdfBrush':
1122
+ """
1123
+ Gets the DarkOliveGreen default brush.
1124
+ """
1125
+ #GetDllLibPdf().PdfBrushes_get_DarkOliveGreen.argtypes=[]
1126
+ GetDllLibPdf().PdfBrushes_get_DarkOliveGreen.restype=c_void_p
1127
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkOliveGreen)
1128
+ ret = None if intPtr==None else PdfBrush(intPtr)
1129
+ return ret
1130
+
1131
+
1132
+ @staticmethod
1133
+
1134
+ def get_DarkOrange()->'PdfBrush':
1135
+ """
1136
+ Gets the DarkOrange default brush.
1137
+ """
1138
+ #GetDllLibPdf().PdfBrushes_get_DarkOrange.argtypes=[]
1139
+ GetDllLibPdf().PdfBrushes_get_DarkOrange.restype=c_void_p
1140
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkOrange)
1141
+ ret = None if intPtr==None else PdfBrush(intPtr)
1142
+ return ret
1143
+
1144
+
1145
+ @staticmethod
1146
+
1147
+ def get_DarkOrchid()->'PdfBrush':
1148
+ """
1149
+ Gets the DarkOrchid default brush.
1150
+ """
1151
+ #GetDllLibPdf().PdfBrushes_get_DarkOrchid.argtypes=[]
1152
+ GetDllLibPdf().PdfBrushes_get_DarkOrchid.restype=c_void_p
1153
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkOrchid)
1154
+ ret = None if intPtr==None else PdfBrush(intPtr)
1155
+ return ret
1156
+
1157
+
1158
+ @staticmethod
1159
+
1160
+ def get_DarkRed()->'PdfBrush':
1161
+ """
1162
+ Gets the DarkRed default brush.
1163
+ """
1164
+ #GetDllLibPdf().PdfBrushes_get_DarkRed.argtypes=[]
1165
+ GetDllLibPdf().PdfBrushes_get_DarkRed.restype=c_void_p
1166
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkRed)
1167
+ ret = None if intPtr==None else PdfBrush(intPtr)
1168
+ return ret
1169
+
1170
+
1171
+ @staticmethod
1172
+
1173
+ def get_DarkSalmon()->'PdfBrush':
1174
+ """
1175
+ Gets the DarkSalmon default brush.
1176
+ """
1177
+ #GetDllLibPdf().PdfBrushes_get_DarkSalmon.argtypes=[]
1178
+ GetDllLibPdf().PdfBrushes_get_DarkSalmon.restype=c_void_p
1179
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkSalmon)
1180
+ ret = None if intPtr==None else PdfBrush(intPtr)
1181
+ return ret
1182
+
1183
+
1184
+ @staticmethod
1185
+
1186
+ def get_DarkSeaGreen()->'PdfBrush':
1187
+ """
1188
+ Gets the DarkSeaGreen default brush.
1189
+ """
1190
+ #GetDllLibPdf().PdfBrushes_get_DarkSeaGreen.argtypes=[]
1191
+ GetDllLibPdf().PdfBrushes_get_DarkSeaGreen.restype=c_void_p
1192
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkSeaGreen)
1193
+ ret = None if intPtr==None else PdfBrush(intPtr)
1194
+ return ret
1195
+
1196
+
1197
+ @staticmethod
1198
+
1199
+ def get_DarkSlateBlue()->'PdfBrush':
1200
+ """
1201
+ Gets the DarkSlateBlue default brush.
1202
+ """
1203
+ #GetDllLibPdf().PdfBrushes_get_DarkSlateBlue.argtypes=[]
1204
+ GetDllLibPdf().PdfBrushes_get_DarkSlateBlue.restype=c_void_p
1205
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkSlateBlue)
1206
+ ret = None if intPtr==None else PdfBrush(intPtr)
1207
+ return ret
1208
+
1209
+
1210
+ @staticmethod
1211
+
1212
+ def get_DarkSlateGray()->'PdfBrush':
1213
+ """
1214
+ Gets the DarkSlateGray default brush.
1215
+ """
1216
+ #GetDllLibPdf().PdfBrushes_get_DarkSlateGray.argtypes=[]
1217
+ GetDllLibPdf().PdfBrushes_get_DarkSlateGray.restype=c_void_p
1218
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkSlateGray)
1219
+ ret = None if intPtr==None else PdfBrush(intPtr)
1220
+ return ret
1221
+
1222
+
1223
+ @staticmethod
1224
+
1225
+ def get_DarkTurquoise()->'PdfBrush':
1226
+ """
1227
+ Gets the DarkTurquoise default brush.
1228
+ """
1229
+ #GetDllLibPdf().PdfBrushes_get_DarkTurquoise.argtypes=[]
1230
+ GetDllLibPdf().PdfBrushes_get_DarkTurquoise.restype=c_void_p
1231
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkTurquoise)
1232
+ ret = None if intPtr==None else PdfBrush(intPtr)
1233
+ return ret
1234
+
1235
+
1236
+ @staticmethod
1237
+
1238
+ def get_DarkViolet()->'PdfBrush':
1239
+ """
1240
+ Gets the DarkViolet default brush.
1241
+ """
1242
+ #GetDllLibPdf().PdfBrushes_get_DarkViolet.argtypes=[]
1243
+ GetDllLibPdf().PdfBrushes_get_DarkViolet.restype=c_void_p
1244
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DarkViolet)
1245
+ ret = None if intPtr==None else PdfBrush(intPtr)
1246
+ return ret
1247
+
1248
+
1249
+ @staticmethod
1250
+
1251
+ def get_DeepPink()->'PdfBrush':
1252
+ """
1253
+ Gets the DeepPink default brush.
1254
+ """
1255
+ #GetDllLibPdf().PdfBrushes_get_DeepPink.argtypes=[]
1256
+ GetDllLibPdf().PdfBrushes_get_DeepPink.restype=c_void_p
1257
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DeepPink)
1258
+ ret = None if intPtr==None else PdfBrush(intPtr)
1259
+ return ret
1260
+
1261
+
1262
+ @staticmethod
1263
+
1264
+ def get_DeepSkyBlue()->'PdfBrush':
1265
+ """
1266
+ Gets the DeepSkyBlue default brush.
1267
+ """
1268
+ #GetDllLibPdf().PdfBrushes_get_DeepSkyBlue.argtypes=[]
1269
+ GetDllLibPdf().PdfBrushes_get_DeepSkyBlue.restype=c_void_p
1270
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DeepSkyBlue)
1271
+ ret = None if intPtr==None else PdfBrush(intPtr)
1272
+ return ret
1273
+
1274
+
1275
+ @staticmethod
1276
+
1277
+ def get_DimGray()->'PdfBrush':
1278
+ """
1279
+ Gets the DimGray default brush.
1280
+ """
1281
+ #GetDllLibPdf().PdfBrushes_get_DimGray.argtypes=[]
1282
+ GetDllLibPdf().PdfBrushes_get_DimGray.restype=c_void_p
1283
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DimGray)
1284
+ ret = None if intPtr==None else PdfBrush(intPtr)
1285
+ return ret
1286
+
1287
+
1288
+ @staticmethod
1289
+
1290
+ def get_DodgerBlue()->'PdfBrush':
1291
+ """
1292
+ Gets the DodgerBlue default brush.
1293
+ """
1294
+ #GetDllLibPdf().PdfBrushes_get_DodgerBlue.argtypes=[]
1295
+ GetDllLibPdf().PdfBrushes_get_DodgerBlue.restype=c_void_p
1296
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_DodgerBlue)
1297
+ ret = None if intPtr==None else PdfBrush(intPtr)
1298
+ return ret
1299
+
1300
+
1301
+ @staticmethod
1302
+
1303
+ def get_Firebrick()->'PdfBrush':
1304
+ """
1305
+ Gets the Firebrick default brush.
1306
+ """
1307
+ #GetDllLibPdf().PdfBrushes_get_Firebrick.argtypes=[]
1308
+ GetDllLibPdf().PdfBrushes_get_Firebrick.restype=c_void_p
1309
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Firebrick)
1310
+ ret = None if intPtr==None else PdfBrush(intPtr)
1311
+ return ret
1312
+
1313
+
1314
+ @staticmethod
1315
+
1316
+ def get_FloralWhite()->'PdfBrush':
1317
+ """
1318
+ Gets the FloralWhite default brush.
1319
+ """
1320
+ #GetDllLibPdf().PdfBrushes_get_FloralWhite.argtypes=[]
1321
+ GetDllLibPdf().PdfBrushes_get_FloralWhite.restype=c_void_p
1322
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_FloralWhite)
1323
+ ret = None if intPtr==None else PdfBrush(intPtr)
1324
+ return ret
1325
+
1326
+
1327
+ @staticmethod
1328
+
1329
+ def get_ForestGreen()->'PdfBrush':
1330
+ """
1331
+ Gets the ForestGreen default brush.
1332
+ """
1333
+ #GetDllLibPdf().PdfBrushes_get_ForestGreen.argtypes=[]
1334
+ GetDllLibPdf().PdfBrushes_get_ForestGreen.restype=c_void_p
1335
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_ForestGreen)
1336
+ ret = None if intPtr==None else PdfBrush(intPtr)
1337
+ return ret
1338
+
1339
+
1340
+ @staticmethod
1341
+
1342
+ def get_Fuchsia()->'PdfBrush':
1343
+ """
1344
+ Gets the Fuchsia default brush.
1345
+ """
1346
+ #GetDllLibPdf().PdfBrushes_get_Fuchsia.argtypes=[]
1347
+ GetDllLibPdf().PdfBrushes_get_Fuchsia.restype=c_void_p
1348
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Fuchsia)
1349
+ ret = None if intPtr==None else PdfBrush(intPtr)
1350
+ return ret
1351
+
1352
+
1353
+ @staticmethod
1354
+
1355
+ def get_Gainsboro()->'PdfBrush':
1356
+ """
1357
+ Gets the Gainsborough default brush.
1358
+ """
1359
+ #GetDllLibPdf().PdfBrushes_get_Gainsboro.argtypes=[]
1360
+ GetDllLibPdf().PdfBrushes_get_Gainsboro.restype=c_void_p
1361
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Gainsboro)
1362
+ ret = None if intPtr==None else PdfBrush(intPtr)
1363
+ return ret
1364
+
1365
+
1366
+ @staticmethod
1367
+
1368
+ def get_GhostWhite()->'PdfBrush':
1369
+ """
1370
+ Gets the GhostWhite default brush.
1371
+ """
1372
+ #GetDllLibPdf().PdfBrushes_get_GhostWhite.argtypes=[]
1373
+ GetDllLibPdf().PdfBrushes_get_GhostWhite.restype=c_void_p
1374
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_GhostWhite)
1375
+ ret = None if intPtr==None else PdfBrush(intPtr)
1376
+ return ret
1377
+
1378
+
1379
+ @staticmethod
1380
+
1381
+ def get_Gold()->'PdfBrush':
1382
+ """
1383
+ Gets the Gold default brush.
1384
+ """
1385
+ #GetDllLibPdf().PdfBrushes_get_Gold.argtypes=[]
1386
+ GetDllLibPdf().PdfBrushes_get_Gold.restype=c_void_p
1387
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Gold)
1388
+ ret = None if intPtr==None else PdfBrush(intPtr)
1389
+ return ret
1390
+
1391
+
1392
+ @staticmethod
1393
+
1394
+ def get_Goldenrod()->'PdfBrush':
1395
+ """
1396
+ Gets the Goldenrod default brush.
1397
+ """
1398
+ #GetDllLibPdf().PdfBrushes_get_Goldenrod.argtypes=[]
1399
+ GetDllLibPdf().PdfBrushes_get_Goldenrod.restype=c_void_p
1400
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Goldenrod)
1401
+ ret = None if intPtr==None else PdfBrush(intPtr)
1402
+ return ret
1403
+
1404
+
1405
+ @staticmethod
1406
+
1407
+ def get_Gray()->'PdfBrush':
1408
+ """
1409
+ Gets the Gray default brush.
1410
+ """
1411
+ #GetDllLibPdf().PdfBrushes_get_Gray.argtypes=[]
1412
+ GetDllLibPdf().PdfBrushes_get_Gray.restype=c_void_p
1413
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Gray)
1414
+ ret = None if intPtr==None else PdfBrush(intPtr)
1415
+ return ret
1416
+
1417
+
1418
+ @staticmethod
1419
+
1420
+ def get_Green()->'PdfBrush':
1421
+ """
1422
+ Gets the Green default brush.
1423
+ """
1424
+ #GetDllLibPdf().PdfBrushes_get_Green.argtypes=[]
1425
+ GetDllLibPdf().PdfBrushes_get_Green.restype=c_void_p
1426
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Green)
1427
+ ret = None if intPtr==None else PdfBrush(intPtr)
1428
+ return ret
1429
+
1430
+
1431
+ @staticmethod
1432
+
1433
+ def get_GreenYellow()->'PdfBrush':
1434
+ """
1435
+ Gets the GreenYellow default brush.
1436
+ """
1437
+ #GetDllLibPdf().PdfBrushes_get_GreenYellow.argtypes=[]
1438
+ GetDllLibPdf().PdfBrushes_get_GreenYellow.restype=c_void_p
1439
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_GreenYellow)
1440
+ ret = None if intPtr==None else PdfBrush(intPtr)
1441
+ return ret
1442
+
1443
+
1444
+ @staticmethod
1445
+
1446
+ def get_Honeydew()->'PdfBrush':
1447
+ """
1448
+ Gets the Honeydew default brush.
1449
+ """
1450
+ #GetDllLibPdf().PdfBrushes_get_Honeydew.argtypes=[]
1451
+ GetDllLibPdf().PdfBrushes_get_Honeydew.restype=c_void_p
1452
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Honeydew)
1453
+ ret = None if intPtr==None else PdfBrush(intPtr)
1454
+ return ret
1455
+
1456
+
1457
+ @staticmethod
1458
+
1459
+ def get_HotPink()->'PdfBrush':
1460
+ """
1461
+ Gets the HotPink default brush.
1462
+ """
1463
+ #GetDllLibPdf().PdfBrushes_get_HotPink.argtypes=[]
1464
+ GetDllLibPdf().PdfBrushes_get_HotPink.restype=c_void_p
1465
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_HotPink)
1466
+ ret = None if intPtr==None else PdfBrush(intPtr)
1467
+ return ret
1468
+
1469
+
1470
+ @staticmethod
1471
+
1472
+ def get_IndianRed()->'PdfBrush':
1473
+ """
1474
+ Gets the IndianRed default brush.
1475
+ """
1476
+ #GetDllLibPdf().PdfBrushes_get_IndianRed.argtypes=[]
1477
+ GetDllLibPdf().PdfBrushes_get_IndianRed.restype=c_void_p
1478
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_IndianRed)
1479
+ ret = None if intPtr==None else PdfBrush(intPtr)
1480
+ return ret
1481
+
1482
+
1483
+ @staticmethod
1484
+
1485
+ def get_Indigo()->'PdfBrush':
1486
+ """
1487
+ Gets the Indigo default brush.
1488
+ """
1489
+ #GetDllLibPdf().PdfBrushes_get_Indigo.argtypes=[]
1490
+ GetDllLibPdf().PdfBrushes_get_Indigo.restype=c_void_p
1491
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Indigo)
1492
+ ret = None if intPtr==None else PdfBrush(intPtr)
1493
+ return ret
1494
+
1495
+
1496
+ @staticmethod
1497
+
1498
+ def get_Ivory()->'PdfBrush':
1499
+ """
1500
+ Gets the Ivory default brush.
1501
+ """
1502
+ #GetDllLibPdf().PdfBrushes_get_Ivory.argtypes=[]
1503
+ GetDllLibPdf().PdfBrushes_get_Ivory.restype=c_void_p
1504
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Ivory)
1505
+ ret = None if intPtr==None else PdfBrush(intPtr)
1506
+ return ret
1507
+
1508
+
1509
+ @staticmethod
1510
+
1511
+ def get_Khaki()->'PdfBrush':
1512
+ """
1513
+ Gets the Khaki default brush.
1514
+ """
1515
+ #GetDllLibPdf().PdfBrushes_get_Khaki.argtypes=[]
1516
+ GetDllLibPdf().PdfBrushes_get_Khaki.restype=c_void_p
1517
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Khaki)
1518
+ ret = None if intPtr==None else PdfBrush(intPtr)
1519
+ return ret
1520
+
1521
+
1522
+ @staticmethod
1523
+
1524
+ def get_Lavender()->'PdfBrush':
1525
+ """
1526
+ Gets the Lavender default brush.
1527
+ """
1528
+ #GetDllLibPdf().PdfBrushes_get_Lavender.argtypes=[]
1529
+ GetDllLibPdf().PdfBrushes_get_Lavender.restype=c_void_p
1530
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Lavender)
1531
+ ret = None if intPtr==None else PdfBrush(intPtr)
1532
+ return ret
1533
+
1534
+
1535
+ @staticmethod
1536
+
1537
+ def get_LavenderBlush()->'PdfBrush':
1538
+ """
1539
+ Gets the LavenderBlush default brush.
1540
+ """
1541
+ #GetDllLibPdf().PdfBrushes_get_LavenderBlush.argtypes=[]
1542
+ GetDllLibPdf().PdfBrushes_get_LavenderBlush.restype=c_void_p
1543
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LavenderBlush)
1544
+ ret = None if intPtr==None else PdfBrush(intPtr)
1545
+ return ret
1546
+
1547
+
1548
+ @staticmethod
1549
+
1550
+ def get_LawnGreen()->'PdfBrush':
1551
+ """
1552
+ Gets the LawnGreen default brush.
1553
+ """
1554
+ #GetDllLibPdf().PdfBrushes_get_LawnGreen.argtypes=[]
1555
+ GetDllLibPdf().PdfBrushes_get_LawnGreen.restype=c_void_p
1556
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LawnGreen)
1557
+ ret = None if intPtr==None else PdfBrush(intPtr)
1558
+ return ret
1559
+
1560
+
1561
+ @staticmethod
1562
+
1563
+ def get_LemonChiffon()->'PdfBrush':
1564
+ """
1565
+ Gets the LemonChiffon default brush.
1566
+ """
1567
+ #GetDllLibPdf().PdfBrushes_get_LemonChiffon.argtypes=[]
1568
+ GetDllLibPdf().PdfBrushes_get_LemonChiffon.restype=c_void_p
1569
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LemonChiffon)
1570
+ ret = None if intPtr==None else PdfBrush(intPtr)
1571
+ return ret
1572
+
1573
+
1574
+ @staticmethod
1575
+
1576
+ def get_LightBlue()->'PdfBrush':
1577
+ """
1578
+ Gets the LightBlue default brush.
1579
+ """
1580
+ #GetDllLibPdf().PdfBrushes_get_LightBlue.argtypes=[]
1581
+ GetDllLibPdf().PdfBrushes_get_LightBlue.restype=c_void_p
1582
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightBlue)
1583
+ ret = None if intPtr==None else PdfBrush(intPtr)
1584
+ return ret
1585
+
1586
+
1587
+ @staticmethod
1588
+
1589
+ def get_LightCoral()->'PdfBrush':
1590
+ """
1591
+ Gets the LightCoral default brush.
1592
+ """
1593
+ #GetDllLibPdf().PdfBrushes_get_LightCoral.argtypes=[]
1594
+ GetDllLibPdf().PdfBrushes_get_LightCoral.restype=c_void_p
1595
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightCoral)
1596
+ ret = None if intPtr==None else PdfBrush(intPtr)
1597
+ return ret
1598
+
1599
+
1600
+ @staticmethod
1601
+
1602
+ def get_LightCyan()->'PdfBrush':
1603
+ """
1604
+ Gets the LightCyan default brush.
1605
+ """
1606
+ #GetDllLibPdf().PdfBrushes_get_LightCyan.argtypes=[]
1607
+ GetDllLibPdf().PdfBrushes_get_LightCyan.restype=c_void_p
1608
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightCyan)
1609
+ ret = None if intPtr==None else PdfBrush(intPtr)
1610
+ return ret
1611
+
1612
+
1613
+ @staticmethod
1614
+
1615
+ def get_LightGoldenrodYellow()->'PdfBrush':
1616
+ """
1617
+ Gets the LightGoldenrodYellow default brush.
1618
+ """
1619
+ #GetDllLibPdf().PdfBrushes_get_LightGoldenrodYellow.argtypes=[]
1620
+ GetDllLibPdf().PdfBrushes_get_LightGoldenrodYellow.restype=c_void_p
1621
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightGoldenrodYellow)
1622
+ ret = None if intPtr==None else PdfBrush(intPtr)
1623
+ return ret
1624
+
1625
+
1626
+ @staticmethod
1627
+
1628
+ def get_LightGray()->'PdfBrush':
1629
+ """
1630
+ Gets the LightGray default brush.
1631
+ """
1632
+ #GetDllLibPdf().PdfBrushes_get_LightGray.argtypes=[]
1633
+ GetDllLibPdf().PdfBrushes_get_LightGray.restype=c_void_p
1634
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightGray)
1635
+ ret = None if intPtr==None else PdfBrush(intPtr)
1636
+ return ret
1637
+
1638
+
1639
+ @staticmethod
1640
+
1641
+ def get_LightGreen()->'PdfBrush':
1642
+ """
1643
+ Gets the LightGreen default brush.
1644
+ """
1645
+ #GetDllLibPdf().PdfBrushes_get_LightGreen.argtypes=[]
1646
+ GetDllLibPdf().PdfBrushes_get_LightGreen.restype=c_void_p
1647
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightGreen)
1648
+ ret = None if intPtr==None else PdfBrush(intPtr)
1649
+ return ret
1650
+
1651
+
1652
+ @staticmethod
1653
+
1654
+ def get_LightPink()->'PdfBrush':
1655
+ """
1656
+ Gets the LightPink default brush.
1657
+ """
1658
+ #GetDllLibPdf().PdfBrushes_get_LightPink.argtypes=[]
1659
+ GetDllLibPdf().PdfBrushes_get_LightPink.restype=c_void_p
1660
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightPink)
1661
+ ret = None if intPtr==None else PdfBrush(intPtr)
1662
+ return ret
1663
+
1664
+
1665
+ @staticmethod
1666
+
1667
+ def get_LightSalmon()->'PdfBrush':
1668
+ """
1669
+ Gets the LightSalmon default brush.
1670
+ """
1671
+ #GetDllLibPdf().PdfBrushes_get_LightSalmon.argtypes=[]
1672
+ GetDllLibPdf().PdfBrushes_get_LightSalmon.restype=c_void_p
1673
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightSalmon)
1674
+ ret = None if intPtr==None else PdfBrush(intPtr)
1675
+ return ret
1676
+
1677
+
1678
+ @staticmethod
1679
+
1680
+ def get_LightSeaGreen()->'PdfBrush':
1681
+ """
1682
+ Gets the LightSeaGreen default brush.
1683
+ """
1684
+ #GetDllLibPdf().PdfBrushes_get_LightSeaGreen.argtypes=[]
1685
+ GetDllLibPdf().PdfBrushes_get_LightSeaGreen.restype=c_void_p
1686
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightSeaGreen)
1687
+ ret = None if intPtr==None else PdfBrush(intPtr)
1688
+ return ret
1689
+
1690
+
1691
+ @staticmethod
1692
+
1693
+ def get_LightSkyBlue()->'PdfBrush':
1694
+ """
1695
+ Gets the LightSkyBlue default brush.
1696
+ """
1697
+ #GetDllLibPdf().PdfBrushes_get_LightSkyBlue.argtypes=[]
1698
+ GetDllLibPdf().PdfBrushes_get_LightSkyBlue.restype=c_void_p
1699
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightSkyBlue)
1700
+ ret = None if intPtr==None else PdfBrush(intPtr)
1701
+ return ret
1702
+
1703
+
1704
+ @staticmethod
1705
+
1706
+ def get_LightSlateGray()->'PdfBrush':
1707
+ """
1708
+ Gets the LightSlateGray default brush.
1709
+ """
1710
+ #GetDllLibPdf().PdfBrushes_get_LightSlateGray.argtypes=[]
1711
+ GetDllLibPdf().PdfBrushes_get_LightSlateGray.restype=c_void_p
1712
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightSlateGray)
1713
+ ret = None if intPtr==None else PdfBrush(intPtr)
1714
+ return ret
1715
+
1716
+
1717
+ @staticmethod
1718
+
1719
+ def get_LightSteelBlue()->'PdfBrush':
1720
+ """
1721
+ Gets the LightSteelBlue default brush.
1722
+ """
1723
+ #GetDllLibPdf().PdfBrushes_get_LightSteelBlue.argtypes=[]
1724
+ GetDllLibPdf().PdfBrushes_get_LightSteelBlue.restype=c_void_p
1725
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightSteelBlue)
1726
+ ret = None if intPtr==None else PdfBrush(intPtr)
1727
+ return ret
1728
+
1729
+
1730
+ @staticmethod
1731
+
1732
+ def get_LightYellow()->'PdfBrush':
1733
+ """
1734
+ Gets the LightYellow default brush.
1735
+ """
1736
+ #GetDllLibPdf().PdfBrushes_get_LightYellow.argtypes=[]
1737
+ GetDllLibPdf().PdfBrushes_get_LightYellow.restype=c_void_p
1738
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LightYellow)
1739
+ ret = None if intPtr==None else PdfBrush(intPtr)
1740
+ return ret
1741
+
1742
+
1743
+ @staticmethod
1744
+
1745
+ def get_Lime()->'PdfBrush':
1746
+ """
1747
+ Gets the Lime default brush.
1748
+ """
1749
+ #GetDllLibPdf().PdfBrushes_get_Lime.argtypes=[]
1750
+ GetDllLibPdf().PdfBrushes_get_Lime.restype=c_void_p
1751
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Lime)
1752
+ ret = None if intPtr==None else PdfBrush(intPtr)
1753
+ return ret
1754
+
1755
+
1756
+ @staticmethod
1757
+
1758
+ def get_LimeGreen()->'PdfBrush':
1759
+ """
1760
+ Gets the LimeGreen default brush.
1761
+ """
1762
+ #GetDllLibPdf().PdfBrushes_get_LimeGreen.argtypes=[]
1763
+ GetDllLibPdf().PdfBrushes_get_LimeGreen.restype=c_void_p
1764
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_LimeGreen)
1765
+ ret = None if intPtr==None else PdfBrush(intPtr)
1766
+ return ret
1767
+
1768
+
1769
+ @staticmethod
1770
+
1771
+ def get_Linen()->'PdfBrush':
1772
+ """
1773
+ Gets the Linen default brush.
1774
+ """
1775
+ #GetDllLibPdf().PdfBrushes_get_Linen.argtypes=[]
1776
+ GetDllLibPdf().PdfBrushes_get_Linen.restype=c_void_p
1777
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Linen)
1778
+ ret = None if intPtr==None else PdfBrush(intPtr)
1779
+ return ret
1780
+
1781
+
1782
+ @staticmethod
1783
+
1784
+ def get_Magenta()->'PdfBrush':
1785
+ """
1786
+ Gets the Magenta default brush.
1787
+ """
1788
+ #GetDllLibPdf().PdfBrushes_get_Magenta.argtypes=[]
1789
+ GetDllLibPdf().PdfBrushes_get_Magenta.restype=c_void_p
1790
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Magenta)
1791
+ ret = None if intPtr==None else PdfBrush(intPtr)
1792
+ return ret
1793
+
1794
+
1795
+ @staticmethod
1796
+
1797
+ def get_Maroon()->'PdfBrush':
1798
+ """
1799
+ Gets the Maroon default brush.
1800
+ """
1801
+ #GetDllLibPdf().PdfBrushes_get_Maroon.argtypes=[]
1802
+ GetDllLibPdf().PdfBrushes_get_Maroon.restype=c_void_p
1803
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_Maroon)
1804
+ ret = None if intPtr==None else PdfBrush(intPtr)
1805
+ return ret
1806
+
1807
+
1808
+ @staticmethod
1809
+
1810
+ def get_MediumAquamarine()->'PdfBrush':
1811
+ """
1812
+ Gets the MediumAquamarine default brush.
1813
+ """
1814
+ #GetDllLibPdf().PdfBrushes_get_MediumAquamarine.argtypes=[]
1815
+ GetDllLibPdf().PdfBrushes_get_MediumAquamarine.restype=c_void_p
1816
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumAquamarine)
1817
+ ret = None if intPtr==None else PdfBrush(intPtr)
1818
+ return ret
1819
+
1820
+
1821
+ @staticmethod
1822
+
1823
+ def get_MediumBlue()->'PdfBrush':
1824
+ """
1825
+ Gets the MediumBlue default brush.
1826
+ """
1827
+ #GetDllLibPdf().PdfBrushes_get_MediumBlue.argtypes=[]
1828
+ GetDllLibPdf().PdfBrushes_get_MediumBlue.restype=c_void_p
1829
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumBlue)
1830
+ ret = None if intPtr==None else PdfBrush(intPtr)
1831
+ return ret
1832
+
1833
+
1834
+ @staticmethod
1835
+
1836
+ def get_MediumOrchid()->'PdfBrush':
1837
+ """
1838
+ Gets the MediumOrchid default brush.
1839
+ """
1840
+ #GetDllLibPdf().PdfBrushes_get_MediumOrchid.argtypes=[]
1841
+ GetDllLibPdf().PdfBrushes_get_MediumOrchid.restype=c_void_p
1842
+ intPtr = CallCFunction(GetDllLibPdf().PdfBrushes_get_MediumOrchid)
1843
+ ret = None if intPtr==None else PdfBrush(intPtr)
1844
+ return ret
1845
+
1846
+