Class
DocumentActionCollection

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:

cs-api-definition
public class DocumentActionCollection

Inheritance: objectDocumentActionCollection

Properties

DocumentDidPrint

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

Declaration

cs-api-definition
public JavaScriptAction DocumentDidPrint { get; set; }

Property Value

JavaScriptAction

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

DocumentDidSave

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

Declaration

cs-api-definition
public JavaScriptAction DocumentDidSave { get; set; }

Property Value

JavaScriptAction

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

DocumentWillClose

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

Declaration

cs-api-definition
public JavaScriptAction DocumentWillClose { get; set; }

Property Value

JavaScriptAction

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

DocumentWillPrint

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

Declaration

cs-api-definition
public JavaScriptAction DocumentWillPrint { get; set; }

Property Value

JavaScriptAction

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

DocumentWillSave

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

Declaration

cs-api-definition
public JavaScriptAction DocumentWillSave { get; set; }

Property Value

JavaScriptAction

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