| Components | All | New | MacOS | Windows | Linux | iOS | ||||
| Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old | |
DynaPDF.GetSVGSymbolName
Retrieves the name of a SVG symbol.
| Component | Version | macOS | Windows | Linux | Server | iOS SDK |
| DynaPDF | 16.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "DynaPDF.GetSVGSymbolName"; PDF { ; Index } ) More
Parameters
| Parameter | Description | Example | Flags |
|---|---|---|---|
| The PDF reference returned from DynaPDF.New. | |||
| Index | The parameter Index must be in the range 0 through DynaPDF.GetSVGSymbolCount -1. Default index is zero. |
0 | Optional |
Result
Returns text or error.
Description
Retrieves the name of a SVG symbol.A symbol name is usually just some kind of unique string with no further meaning.
See also GetSVGSymbolName function in DynaPDF manual.
Examples
Get name of first symbol:
Let(
[
path = "/Users/cs/Desktop/EUworld.svg" ;
pdf = MBS( "DynaPDF.New" ) ;
r = MBS( "DynaPDF.LoadSVGFile" ; pdf; path ) ;
name = MBS( "DynaPDF.GetSVGSymbolName" ; PDF; 0 ) ;
r = MBS( "DynaPDF.Release" ; pdf )
] ;
name
)
Example result: svg1926
[
path = "/Users/cs/Desktop/EUworld.svg" ;
pdf = MBS( "DynaPDF.New" ) ;
r = MBS( "DynaPDF.LoadSVGFile" ; pdf; path ) ;
name = MBS( "DynaPDF.GetSVGSymbolName" ; PDF; 0 ) ;
r = MBS( "DynaPDF.Release" ; pdf )
] ;
name
)
Example result: svg1926
See also
- DynaPDF.GetSVGSymbolCount
- DynaPDF.GetSVGSymbolNames
- DynaPDF.LoadSVG
- DynaPDF.LoadSVGFile
- DynaPDF.New
- DynaPDF.Release
Release notes
- Version 16.4
- Added DynaPDF.GetSVGSize, DynaPDF.GetSVGSymbolCount and DynaPDF.GetSVGSymbolName functions.
Blog Entries
This function checks for a license.
Created 8th August 2026, last changed 9th August 2026
MarkDown version: DynaPDFGetSVGSymbolName.md