but I receive only highlight text, without border.
Moreover this works correctly when I export xfdf annotation and import them back.
How can I achieve it?
It looks like you are missing the addAnnotation and drawAnnotation after creating the highlight annotation.
Please follow the guide here to create a highlight annotation:
It’s looks like when I try add annotation programmaticaly 0.5 opacity on content doesn’t work, but during importing works correctly. (or if opacity work, I lose border)
I tried also redrawAnnotation but this was not effectively.
How can I achieve it with TextHighlightAnnotation during adding programmaticaly?
To get the alpha of the fill color, you will want to adjust the ‘StrokeColor’ with a 4th number,
i.e. highlight.StrokeColor = new Annotations.Color(255, 255, 0, 0.5);
StrokeThickness may be the attribute you are looking for.