Some test text!

Search
Hamburger Icon

Ruby / Guides / Style properties

Edit annotation style properties in Ruby

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

doc = PDFDoc.new(filename)
page = doc.GetPage(1)

circle=Circle.Create(doc.GetSDFDoc(), Rect.new( 100, 100, 200, 200 ))
circle.SetColor(ColorPt.new(0, 1, 0), 3)
circle.SetInteriorColor(ColorPt.new(0, 0, 1), 3)
circle.SetBorderStyle( BorderStyle.new( BorderStyle::E_dashed, 3, 0, 0, [2, 4] ) )
circle.SetPadding( 2 )
circle.RefreshAppearance()
page.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).

Get the answers you need: Chat with us