Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.1
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
Statistic
FMM
Blog
Searches a text and adds highlights for it.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
DynaPDF | 3.5 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example | Flags |
---|---|---|---|
The PDF reference returned from DynaPDF.New. | |||
Text | The text to search. | "Hello" | |
HighlightColor | The highlight color. Default is yellow. Value is the RGB color as integer. Blue*65536+Green*256+Red with each color channel having a range from 0 to 255. | MBS( "DynaPDF.RGB"; 0; 0; 255 ) | Optional |
CaseInsensitive | Optional, if 1, the case of the letters is ignored (also umlauts). | 1 | Optional |
Returns number of locations found.
Highlight "Apple" with yellow:
MBS( "DynaPDF.HighlightPattern"; $PDF; "Apple"; MBS( "DynaPDF.RGB"; 0; 255; 255 ); 1 )
Same, but with color calculated ourself:
MBS("DynaPDF.HighlightPattern"; $pdf; "Apple"; 255+255*256; 1)
This function checks for a license.
Created 18th August 2014, last changed 19th March 2019