Controls whether an interactor can be interacted with.

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

Syntax

C#
public bool IsInteractive { get; set; }
Visual Basic
Public Property IsInteractive As Boolean
	Get
	Set

Remarks

Although this property can be used to turn on or off the "interactivity" of interactors, there are a few things to take into account:
  • If PDF annotations are read-only, or invisible, they will not react to user actions, regardless of the value of IsInteractive.
  • The StandardPagesViewer will actively change the IsInteractive property of annotations. This is needed to implement various "CursorMode" values. If you use the StandardPagesViewer you should not attempt to set IsInteractive to change the "interactivity" of annotations.

See Also