PdfWidgetFlags Enumeration

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfWidgetFlags Enumeration
Specifies various characteristics of a PdfWidget.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
[FlagsAttribute]
public enum PdfWidgetFlags
VB
<FlagsAttribute>
Public Enumeration PdfWidgetFlags

Members

  Member nameValueDescription
Invisible1 If set, do not display the widget if it does not belong to one of the standard widget types and there is no action associated with the widget.
Hidden2 If set, do not display or print the widget or allow it to interact with the user, regardless of its widget type or whether there is an action associated with the widget.
Print4 If set, print the widget when the page is printed. If clear, never print the widget, regardless of whether it is displayed on the screen.
NoZoom8 If set, do not scale the widget's appearance to match the magnification of the page.
NoRotate16 If set, do not rotate the widget's appearance to match the rotation of the page.
NoView32 If set, do not display the widget on the screen or allow it to interact with the user. The widget may be printed (depending on the setting of the Print flag) but should be considered hidden for purposes of on-screen display and user interaction.
ReadOnly64 If set, do not allow the widget to interact with the user. The widget may be displayed or printed (depending on the settings of the NoView and Print flags) but should not respond to mouse clicks or change its appearance in response to mouse motions.
Locked128 (PDF 1.4) If set, do not allow the widget to be deleted or its properties (including position and size) to be modified by the user. This flag does not restrict changes to the widget's contents, such as the value of a form field.
ToggleNoView256 (PDF 1.5) If set, invert the interpretation of the NoView flag for certain events.
LockedContents512 (PDF 1.7) If set, do not allow the contents of the widget to be modified by the user. This flag does not restrict deletion of the widget or changes to other widget properties, such as position and size.

See Also