PdfOutlineItem.Open Property

Gets or sets a value indicating whether this PdfOutlineItem is open.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public bool Open { get; set; }
VB
Public Property Open As Boolean
	Get
	Set

Property Value

Type: Boolean
true if this PdfOutlineItem is open; otherwise, false.

Remarks

When a PdfOutlineItem is open, its immediate children in the hierarchy become visible on the screen; each child may in turn be open or closed, selectively revealing or hiding further parts of the hierarchy. When a PdfOutlineItem item is closed, all of its descendants in the hierarchy are hidden.

Any PdfOutlineItem without child items is always open. So, setting this property to false has no effect for items without child items.

See Also