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:
public class DocumentActionCollection
Inheritance: objectDocumentActionCollection
Properties
Gets or sets the JavaScript to run after the document is printed.
public JavaScriptAction DocumentDidPrint { get; set; }
The JavaScript action to execute after the document has been printed.
Gets or sets the JavaScript to run after the document is saved.
public JavaScriptAction DocumentDidSave { get; set; }
The JavaScript action to execute after the document has been saved.
Gets or sets the JavaScript to run before the document closes.
public JavaScriptAction DocumentWillClose { get; set; }
The JavaScript action to execute when the document is about to close.
Gets or sets the JavaScript to run before the document is printed.
public JavaScriptAction DocumentWillPrint { get; set; }
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.
public JavaScriptAction DocumentWillSave { get; set; }
The JavaScript action to execute when the document is about to be saved.