ClassDocumentActionCollection
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
DocumentDidPrint
Gets or sets the JavaScript to run after the document is printed.
Declaration
public JavaScriptAction DocumentDidPrint { get; set; }
Property Value
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
public JavaScriptAction DocumentDidSave { get; set; }
Property Value
The JavaScript action to execute after the document has been saved.
DocumentWillClose
Gets or sets the JavaScript to run before the document closes.
Declaration
public JavaScriptAction DocumentWillClose { get; set; }
Property Value
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
public JavaScriptAction DocumentWillPrint { get; set; }
Property Value
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
public JavaScriptAction DocumentWillSave { get; set; }
Property Value
The JavaScript action to execute when the document is about to be saved.