Platforms to show: All Mac Windows Linux Cross-Platform

Back to DynaPDFMBS class.

Previous items Next items

DynaPDFMBS.DeleteAltFontList(FontListHandle as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 22.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes an alternate font list that was created by DynaPDF.CreateAltFontList.

If the parameter Handle was set to -1 all available lists will be deleted.
Returns true on success.

See also DeleteAltFontList function in DynaPDF manual.

DynaPDFMBS.DeleteAnnotation(Handle as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function deletes an annotation.

See also DeleteAnnotation function in DynaPDF manual.

DynaPDFMBS.DeleteAnnotationFromPage(PageNum as UInt32, Handle as UInt32) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 17.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes an annotation from a page.

See also DeleteAnnotationFromPage function in DynaPDF manual.

DynaPDFMBS.DeleteAppEvents(ApplyEvent as Boolean, TOCAppEvent as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 16.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function deletes all application events if any.

The function can optionally apply the visibility state of an event before the application events will be deleted. The new visibility state will be stored in the PDF file. To apply the visibility state of a specific event without deletion call ApplyAppEvent() instead.

If the function succeeds and if application events were deleted the return value is 1. If the no application events were defined the return value is 0. If the function fails the return value is a negative error code.

See also DeleteAppEvents function in DynaPDF manual.

DynaPDFMBS.DeleteBookmark(ABmk as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function deletes a bookmark.

See also DeleteBookmark function in DynaPDF manual.

DynaPDFMBS.DeleteDPartNode(Handle as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 23.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The deletes a dpart node.

The deletes a dpart node or the entire dpart structure if Handle was set to -1. DPart stands for Document Parts, a feature of PDF/VT. If the dpart node contains children then all child nodes will be deleted too.

If the function succeeds the return value is true. If the function fails the return value is false.

See also DeleteDPartNode function in DynaPDF manual.

DynaPDFMBS.DeleteEmbeddedFile(handle as Integer) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes the embedded file with the given handle.

See also DeleteEmbeddedFile function in DynaPDF manual.

DynaPDFMBS.DeleteField(Field as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function deletes an interactive form field.

See also DeleteField function in DynaPDF manual.

DynaPDFMBS.DeleteFieldEx(URL as string) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function deletes an interactive form field by using its full qualified name, that is the name of any parent group field separated by a period (.) plus the field name.

See also DeleteFieldEx function in DynaPDF manual.

DynaPDFMBS.DeleteJavaScripts(DelJavaScriptActions as boolean)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 9.8 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes java scripts.

See also DeleteJavaScripts function in DynaPDF manual.

DynaPDFMBS.DeleteNamedDest(Name as String) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 21.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes a named destination.

If Name is an empty string all named destinations will be deleted.

See also DeleteNamedDest function in DynaPDF manual.

DynaPDFMBS.DeleteNamedDestByIndex(Index as integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 21.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes a named destination.

If Index is set to a negative value all named destinations will be deleted.

See also DeleteNamedDestByIndex function in DynaPDF manual.

DynaPDFMBS.DeleteOCGFromAppEvent(Handle as UInt32, Events as Integer, Categories as Integer, DelCategoryOnly as Boolean) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 15.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes an OCG or layer from one or more application events, or it deletes only one or more categories from an application event in which the OCG was found (if DelCategoryOnly is true).

If DelCategoryOnly is true, and if no more categories are left in the application event, then the event will be deleted. See also AddOCGToAppEvent() and SetOCGContUsage() for further information.
If the function succeeds the return value is true. If the function fails the return value is false.

See also DeleteOCGFromAppEvent function in DynaPDF manual.

DynaPDFMBS.DeleteOCGFromDisplayTree(OCGHandle as UInt32, Recursive as Boolean) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 21.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes a layer or OCG (Optional Content Group) from the display tree of the currently active layer configuration.

Notice:
If the PDF file was not imported with ImportPDFFile() the function ImportOCProperties() must be called in order to import the global Optional Content Properties.
It is also required to load a layer configuration with LoadLayerConfig() before the function can be called.

The display tree is a linked list that contains UI nodes. UI stands for User Interface. Every node in this tree can contain an OCG or an array of OCGs with an optional label.
This function can be used to delete an OCG from the display tree without traversing every node of it with GetOCUINode() beforehand. Therefore, the function is suitable for console applications but GUI based applications should use DeleteOCUINode() instead. DeleteOCUINode() can also be used to delete the entire display tree with just one function call.

If the function succeeds the return value is true. If the function fails the return value is false.

See also DeleteOCGFromDisplayTree function in DynaPDF manual.

DynaPDFMBS.DeleteOCUINode(OCGNodeHandle as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 22.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes an OCUINode.

Deletes an OCUINode (Optional Content User Interface Node) from the display tree of the currently active layer configuration or the entire tree if Node is set to 0.

If the PDF file was not imported with ImportPDFFile() the function ImportOCProperties() must be called in order to import the global Optional Content Properties.
It is also required to load a layer configuration with LoadLayerConfig() before the function can be called.

Note that the deletion of the display tree does not delete any layer or OCG (Optional Content Group). All OCGs still exists and are fully functional. However, users are not able to change the visibility state of OCGs which are not included in the display tree of the corresponding layer configuration.

If the parameter Node is set then it must be a valid pointer of an OCUINode that was returned by GetOCUINode(). Note that the deletion of a node invalidates all pointers which were previously returned by GetOCUINode().

Return value: If the function succeeds the return value is true. If the function fails the return value is false.

See also DeleteOCUINode function in DynaPDF manual.

DynaPDFMBS.DeleteOutputIntent(Index as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 14.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Can be used to delete a specific or all output intents.

A PDF file can contain more than one output intent. Call GetOutputIntentCount to determine the number of available output intents. If the parameter Index is set to -1 all output intents will be deleted.

If the function succeeds the return value is the remaining number of output intents. If the function fails the return value is a negative error code.

See also DeleteOutputIntent function in DynaPDF manual.

DynaPDFMBS.DeletePage(PageNum as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function deletes a page.
Example
// new PDF
Dim pdf As New MyDynapdfMBS

pdf.SetLicenseKey "Lite" // For this example you can use a Lite, Pro or Enterprise License

// create output file
Dim outFile As folderitem = SpecialFolder.Desktop.Child("NewPDF.pdf")
Call pdf.CreateNewPDF(outFile)

// set flags to import all
Dim flags As Integer = Bitwise.BitOr(pdf.kifImportAsPage, pdf.kifImportAll)
Call pdf.SetImportFlags(flags)

// import PDF
Dim inFile As folderitem = SpecialFolder.Desktop.Child("test.pdf")

Call pdf.OpenImportFile(inFile)
Call pdf.ImportPDFFile(1)

// now delete one page
Call pdf.DeletePage(2)

// close output file
Call pdf.closefile

See also DeletePage function in DynaPDF manual.

DynaPDFMBS.DeletePageLabels

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function deletes all page labels contained in the current open document, if any.

See also DeletePageLabels function in DynaPDF manual.

DynaPDFMBS.DeleteSeparationInfo(AllPages as boolean) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function deleted the separation of the current open page or of all pages if the parameter AllPages is set to true.

See also DeleteSeparationInfo function in DynaPDF manual.

DynaPDFMBS.DeleteTemplate(handle as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function deletes a template.

See also DeleteTemplate function in DynaPDF manual.

DynaPDFMBS.DeleteTemplateEx(index as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function deletes a template by using an index instead of a template handle.

See also DeleteTemplateEx function in DynaPDF manual.

DynaPDFMBS.DeleteWatermark(PageNum as Integer, InclAnnots as Boolean) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 23.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Delete a watermark template.

The function can be used to delete watermarks from a single page or from the entire document if PageNum is set to -1. If InclAnnots is true, watermark annotations will be deleted too, if any.
A watermark in PDF terms is a regular template that has a ADBE_CompoundType property of type Watermark. Such templates can be created with the Watermark tool of Adobes Acrobat, or with DynaPDF, for example. See MarkTemplateAsWatermark() for further information.
Return values:
If the function succeeds the return value is the number of deleted watermarks. Note that deleted watermark annotations do not increment the return value. If the function fails, the return value is a negative error code.

See also DeleteWatermark function in DynaPDF manual.

DynaPDFMBS.DeleteXFAForm

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 9.8 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Deletes XFA Form.

See also DeleteXFAForm function in DynaPDF manual.

DynaPDFMBS.DrawArc(PosX as Double, PosY as Double, Radius as Double, StartAngle as Double, EndAngle as Double) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function draws an arc by using a start and end angle.

Some examples using this method:

See also DrawArc function in DynaPDF manual.

DynaPDFMBS.DrawArcEx(PosX as Double, PosY as Double, Width as Double, Height as Double, StartAngle as Double, EndAngle as Double) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function draws an elliptical arc.
Example
dim pdf as new DynaPDFMBS
dim f as FolderItem = SpecialFolder.Desktop.Child("Create PDF.pdf")

pdf.SetLicenseKey "Starter" // For this example you can use a Starter, Lite, Pro or Enterprise License

// create new PDF
call pdf.CreateNewPDF f

// We want to use top-down coordinates
call pdf.SetPageCoords pdf.kpcTopDown

// new page
call pdf.Append

// black
call pdf.SetStrokeColor 0

// draw an arc
call pdf.DrawArcEx 100,100,100,100, 90,180
call pdf.StrokePath

// and a second one
call pdf.DrawArcEx 200,200,100,100, 0,90
call pdf.StrokePath

// and a third one. 0 to 0 gives a full circle
call pdf.DrawArcEx 300,300,100,100, 0,0
call pdf.StrokePath

// finish page
call pdf.EndPage

// Close file
call pdf.CloseFile

// open PDF
f.Launch

Some examples using this method:

See also DrawArcEx function in DynaPDF manual.

DynaPDFMBS.DrawChord(PosX as Double, PosY as Double, Width as Double, Height as Double, StartAngle as Double, EndAngle as Double, FillMode as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function draws an elliptical chord (a region bounded by the intersection of an ellipse and a line segment, called a secant).

Some examples using this method:

See also DrawChord function in DynaPDF manual.

DynaPDFMBS.DrawCircle(PosX as Double, PosY as Double, Radius as Double, FillMode as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function draws a circle.
Example
dim pdf as new DynaPDFMBS
dim f as FolderItem = SpecialFolder.Desktop.Child("Create PDF with Line.pdf")

pdf.SetLicenseKey "Starter" // For this example you can use a Starter, Lite, Pro or Enterprise License

// Create a new PDF
call pdf.CreateNewPDF f

// We want to use top-down coordinates
call pdf.SetPageCoords pdf.kpcTopDown

// Add a page
call pdf.Append

// a circle, filled
call pdf.SetFillColor pdf.RGB(0,255,0) // green
call pdf.DrawCircle(100, 100, 100, pdf.kfmFill)

// a circle, stoked
call pdf.SetStrokeColor pdf.RGB(255,0,0) // red
call pdf.DrawCircle(200, 200, 100, pdf.kfmStroke)

// end page
call pdf.EndPage

// Close page
call pdf.CloseFile

// Open PDF
f.Launch

Some examples using this method:

See also DrawCircle function in DynaPDF manual.

DynaPDFMBS.DrawNGon(PosX as double, PosY as double, Radius as double, Alpha as double, NumSides as Integer, FillMode as integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 20.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Draws a n-gon.

PosX: X-Coordinate of the midpoint of the ngon
PosY: Y-Coordinate of the midpoint of the ngon
Radius: The radius.
Alpha: Rotation angle in degrees
NumSides: Number of sides. Must be greater 2.
FillMode: Fill mode, e.g. kfmFillStroke

The function A n-gon is a polygon with "n" number of sides. The minimum number of sides is three.
A n-gon is a closed path that can be filled, stroked or both. It is also possible to draw a n-gon invisible to apply the filling rules nonzero winding number or even-odd. The filling rules are described at ClipPath(). The parameter FillMode is ignored if the circle is drawn inside a clipping path. The fill modes are described at ClosePath().

If the function succeeds the return value is true. If the function fails the return value is false.

See also DrawNGon function in DynaPDF manual.

DynaPDFMBS.DrawPie(PosX as Double, PosY as Double, Width as Double, Height as Double, StartAngle as Double, EndAngle as Double, FillMode as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function draws a pie-shaped wedge bounded by the intersection of an ellipse and two angles.

Some examples using this method:

See also DrawPie function in DynaPDF manual.

DynaPDFMBS.EditPage(PageNum as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function prepares a page for editing.
Example
dim pdf as DynaPDFMBS // your dynapdf instance

// edit page 1
call pdf.EditPage(1)
// set a font
call pdf.SetFont( "Times New Roman",pdf.kfsNone,46,True,pdf.kcp1252 )
// set a color
call pdf.SetFillColor(0)

// now add a text annotation
call pdf.FreeTextAnnot( 100, 100, 100, 100, "author", "test", 0 )

// end page
call pdf.EndPage

Some examples using this method:

See also EditPage function in DynaPDF manual.

DynaPDFMBS.EditTemplate(index as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function prepares a template for editing.

Some examples using this method:

See also EditTemplate function in DynaPDF manual.

DynaPDFMBS.EditTemplate2(handle as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function prepares the template for editing.

See also EditTemplate2 function in DynaPDF manual.

DynaPDFMBS.Ellipse(PosX as Double, PosY as Double, Width as Double, Height as Double, FillMode as Integer) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function draws an ellipse.

See also Ellipse function in DynaPDF manual.

DynaPDFMBS.EnableMutex(Value as boolean)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 14.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Whether to enable mutex or not.

DynaPDFMBS.EncryptPDF(File as folderitem, OpenPwd as string, OwnerPwd as string, KeyLen as Integer, Restrict as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function encrypts a PDF file.

Some examples using this method:

See also EncryptPDF function in DynaPDF manual.

DynaPDFMBS.EncryptPDFAnsi(Path as string, OpenPwd as string, OwnerPwd as string, KeyLen as Integer, Restrict as Integer) as Integer   Deprecated

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This item is deprecated and should no longer be used. You can use the non ANSI function instead.
This function encrypts a PDF file.

Same as EncryptPDF, but takes path name in Windows ANSI encoding.

See also EncryptPDF function in DynaPDF manual.

DynaPDFMBS.EndContinueText as Boolean   Deprecated

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This item is deprecated and should no longer be used.
This function finishes a continue text block that was created with the function BeginContinueText() beforehand.

See also EndContinueText function in DynaPDF manual.

DynaPDFMBS.EndLayer as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 10.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function closes a layer that was opened by BeginLayer.

If the function succeeds the return value is true. If the function fails the return value is false.

See also EndLayer function in DynaPDF manual.

DynaPDFMBS.EndPage as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function closes an open page that was opened by Append() or EditPage().
Example
dim pdf as DynaPDFMBS // your DynaPDF object
dim bBool as Boolean

bBool=pdf.EndPage

See also EndPage function in DynaPDF manual.

DynaPDFMBS.EndPattern as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function closes an open pattern that was opened by BeginPattern() or CreateStdPattern().

See also EndPattern function in DynaPDF manual.

DynaPDFMBS.EndTemplate as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function closes an open template that was opened by BeginTemplate(), EditTemplate() or EditTemplate2().

See also EndTemplate function in DynaPDF manual.

DynaPDFMBS.EnumDocFonts as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function enumerates all fonts used in the current PDF document.

Will call the EnumDocFont event.

See also EnumDocFonts function in DynaPDF manual.

DynaPDFMBS.EnumDocFontsCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 7.7 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function enumerates all fonts used in the current PDF document and returns the count.

Returns the number of fonts found. Does not call the event.

DynaPDFMBS.EnumHostFonts as Integer   Deprecated

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 8.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This item is deprecated and should no longer be used. You can use GetSysFontInfos instead.
This function enumerates all fonts found in the search directories by passing the font names to a callback function.

Calls the EnumHostFont event.

See also EnumHostFonts function in DynaPDF manual.

DynaPDFMBS.EnumHostFontsCount as Integer   Deprecated

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 7.7 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This item is deprecated and should no longer be used. You can use GetSysFontInfos instead.
This function enumerates all fonts found in the search directories.

Returns the number of fonts found. Does not call the event.

Previous items Next items

The items on this page are in the following plugins: MBS DynaPDF Plugin.


The biggest plugin in space...