Create a foreground layer for a page.

Namespace: TallComponents.Interaction.WinForms.Factories
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

C#
protected virtual WinFormsInteractorLayer CreateForegroundLayer(
	Page page
)
Visual Basic
Protected Overridable Function CreateForegroundLayer ( _
	page As Page _
) As WinFormsInteractorLayer

Parameters

page
Type: TallComponents.PDF..::..Page
The PDF page.

Return Value

A page layer interactor.

Remarks

This layer is on top of all other layers of the page, so its OnPaint method will be drawn last. By default this method will create a BorderLayer that draws a thin black border around the page.

See Also