enum

Cairo::PdfOutlineFlags

Inherits Enum / Comparable / Value / Object

Used by the PdfSurface#add_outline function specify the attributes of an outline item. These flags may be bitwise-or'd to produce any combination of flags.

Constants

Open = 1

The outline item defaults to open in the PDF viewer.

Bold = 2

The outline item is displayed by the viewer in bold text.

Italic = 4

The outline item is displayed by the viewer in italic text.

None = 0
All = 7

Instance methods

bold?

Returns true if this enum value contains Bold

Source
italic?

Returns true if this enum value contains Italic

Source
none?
Source
open?

Returns true if this enum value contains Open

Source