C# Class PdfSharp.Pdf.PdfOutline

Represents an outline item in the outlines tree. An outline is also knows as a bookmark.
Inheritance: PdfSharp.Pdf.PdfDictionary
显示文件 Open project: GNOME/pdfmod

Private Properties

Property Type Description
PdfOutline System

Public Methods

Method Description
PdfOutline ( ) : System

Initializes a new instance of the PdfOutline class.

PdfOutline ( PdfSharp.Pdf.PdfDictionary dict ) : System

Initializes a new instance from an existing dictionary. Used for object type transformation.

PdfOutline ( string title, PdfPage destinationPage ) : System

Initializes a new instance of the PdfOutline class.

PdfOutline ( string title, PdfPage destinationPage, bool opened ) : System

Initializes a new instance of the PdfOutline class.

PdfOutline ( string title, PdfPage destinationPage, bool opened, PdfOutlineStyle style ) : System

Initializes a new instance of the PdfOutline class.

PdfOutline ( string title, PdfPage destinationPage, bool opened, PdfOutlineStyle style, PdfSharp.Drawing.XColor textColor ) : System

Initializes a new instance of the PdfOutline class.

Private Methods

Method Description
PdfOutline ( PdfSharp.Pdf.PdfDocument document ) : System

Initializes a new instance of the PdfOutline class.

Method Details

PdfOutline() public method

Initializes a new instance of the PdfOutline class.
public PdfOutline ( ) : System
return System

PdfOutline() public method

Initializes a new instance from an existing dictionary. Used for object type transformation.
public PdfOutline ( PdfSharp.Pdf.PdfDictionary dict ) : System
dict PdfSharp.Pdf.PdfDictionary
return System

PdfOutline() public method

Initializes a new instance of the PdfOutline class.
public PdfOutline ( string title, PdfPage destinationPage ) : System
title string The outline text.
destinationPage PdfPage The destination page.
return System

PdfOutline() public method

Initializes a new instance of the PdfOutline class.
public PdfOutline ( string title, PdfPage destinationPage, bool opened ) : System
title string The outline text.
destinationPage PdfPage The destination page.
opened bool Specifies whether the node is displayed expanded (opened) or collapsed.
return System

PdfOutline() public method

Initializes a new instance of the PdfOutline class.
public PdfOutline ( string title, PdfPage destinationPage, bool opened, PdfOutlineStyle style ) : System
title string The outline text.
destinationPage PdfPage The destination page.
opened bool Specifies whether the node is displayed expanded (opened) or collapsed.
style PdfOutlineStyle The font style used to draw the outline text.
return System

PdfOutline() public method

Initializes a new instance of the PdfOutline class.
public PdfOutline ( string title, PdfPage destinationPage, bool opened, PdfOutlineStyle style, PdfSharp.Drawing.XColor textColor ) : System
title string The outline text.
destinationPage PdfPage The destination page.
opened bool Specifies whether the node is displayed expanded (opened) or collapsed.
style PdfOutlineStyle The font style used to draw the outline text.
textColor PdfSharp.Drawing.XColor The color used to draw the outline text.
return System