Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
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