New to Telerik Document ProcessingStart a free 30-day trial

Holds JavaScript actions invoked by document lifecycle events such as open/close, save, and print.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.Actions

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public class DocumentActionCollection

Inheritance: objectDocumentActionCollection

Properties

Gets or sets the JavaScript to run after the document is printed.

C#
public JavaScriptAction DocumentDidPrint { get; set; }
Property Value:

The JavaScript action to execute after the document has been printed.

Gets or sets the JavaScript to run after the document is saved.

C#
public JavaScriptAction DocumentDidSave { get; set; }
Property Value:

The JavaScript action to execute after the document has been saved.

Gets or sets the JavaScript to run before the document closes.

C#
public JavaScriptAction DocumentWillClose { get; set; }
Property Value:

The JavaScript action to execute when the document is about to close.

Gets or sets the JavaScript to run before the document is printed.

C#
public JavaScriptAction DocumentWillPrint { get; set; }
Property Value:

The JavaScript action to execute when the document is about to be printed.

Gets or sets the JavaScript to run before the document is saved.

C#
public JavaScriptAction DocumentWillSave { get; set; }
Property Value:

The JavaScript action to execute when the document is about to be saved.