The default winforms annotation interactor factory. Override one or more of the "Create..." methods to create a customised interactors for particular PDF annotations.

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

Syntax

C#
public class AnnotationInteractorFactory : InteractorFactory<WinFormsInteractor>
Visual Basic
Public Class AnnotationInteractorFactory _
	Inherits InteractorFactory(Of WinFormsInteractor)

Remarks

The annotation interactor factory only provides "Create..." methods for concrete PDF types. If one needs to provide customized interactor behaviour for all types of annotations at once, one should subscribe to the AnnotationInteractorCreated event of the viewer and do one of the following for each interactor:

  • Change a general interactor property, such a its Interactive property.
  • Add one or more layers to the interactor.

Inheritance Hierarchy

System..::..Object
  TallComponents.Interaction..::..InteractorFactory<(Of <(<'WinFormsInteractor>)>)>
    TallComponents.Interaction.WinForms.Factories..::..AnnotationInteractorFactory

See Also