PdfRemoveJavaScriptOptions Enumeration
In This Topic
Defines different objects in the PDF document, which are cleaned from contained JavaScript scripts.
Syntax
'Declaration
<FlagsAttribute()>
<ComVisibleAttribute(True)>
Public Enum PdfRemoveJavaScriptOptions
Inherits System.Enum
[Flags()]
[ComVisible(true)]
public enum PdfRemoveJavaScriptOptions : System.Enum
public enum PdfRemoveJavaScriptOptions = class(System.Enum)
FlagsAttribute()
ComVisibleAttribute()
public enum PdfRemoveJavaScriptOptions extends System.Enum
[Flags()]
[ComVisible(true)]
__value public enum PdfRemoveJavaScriptOptions : public System.Enum
[Flags()]
[ComVisible(true)]
public enum class PdfRemoveJavaScriptOptions : public System.Enum
Members
Member | Value | Description |
None | 0 | None of all JavaScript scripts included in the document will be removed. |
RemoveAllJavaScript | 31 | It is the default option. That means all JavaScript scripts will be removed from the document and its related objects. |
RemoveAnnotationActionsJavaScript | 8 | All annotation actions, which contain JavaScript scripts, will be removed from the document. |
RemoveBookmarkActionsJavaScript | 16 | All bookmark actions, which contain JavaScript scripts, will be removed from the document. |
RemoveDocumentActions | 1 | All document actions (based on JavaScript scripts) will be removed from the document. |
RemoveGlobalJavaScript | 2 | All global JavaScript scripts will be removed from the document. |
RemovePageActionsJavaScript | 4 | All page level JavaScript scripts will be removed from the document. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
GdPicture14.PdfRemoveJavaScriptOptions
See Also