Table of Contents

Method SetFitBBoxWidth

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

SetFitBBoxWidth()

Sets the zoom type to use when displaying the page in the view to FitBBoxWidth.

public void SetFitBBoxWidth()

Remarks

The target page will be displayed starting from the top edge of the page.

SetFitBBoxWidth(double)

Sets the zoom type to use when displaying the page in the view to FitBBoxWidth and the Top property to the specified value.

public void SetFitBBoxWidth(double top)

Parameters

top double

The y-coordinate of the upper-left corner of the page to be positioned at the upper-left corner of the window when this view gets displayed.

The coordinate is relative to the bottom edge of the page. I.e. offset 0 means "display bottom edge of the Page at the top edge of the window", which effectively means "display the top edge of the next page at the top edge of the window".

Use the following formula to calculate offset from the top edge of the page: (Page.Height - Top).

Remarks

The target page will be displayed starting from top offset relative to the bottom edge of the page.