Edit annotation style properties on Server/Desktop

To set an annotation style property such as color, interior color, border style, padding, etc to an annotation.

1doc := NewPDFDoc(filename)
2page := doc.GetPage(1)
3
4circle = CircleCreate(doc.GetSDFDoc(), NewRect(100.0, 100.0, 200.0, 200.0 ))
5circle.SetColor(NewColorPt(0.0, 1.0, 0.0), 3)
6circle.SetInteriorColor(NewColorPt(0.0, 0.0, 1.0), 3)
7var dash = NewVectorDouble()
8dash.Add(2.0)
9dash.Add(4.0)
10circle.SetBorderStyle( NewBorderStyle( BorderStyleE_dashed, 3.0, 0.0, 0.0, dash ) )
11dash.Clear()
12circle.SetPadding( 2.0 )
13circle.RefreshAppearance()
14page.AnnotPushBack(circle)

Add or edit PDF annotations sample
Full code sample which shows how to add or edit PDF annotations (e.g. hyperlink, intra-document link, stamp, rubber stamp, file attachment, sound, text, free-text, line, circle, square, polygon, polyline, highlight, squiggly, caret, and ink).

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales