Class DocumentActionCollection
Represents a collection of JavaScriptAction objects.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Actions
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class DocumentActionCollection
Properties
DocumentDidPrint
Gets or sets the JavaScript action that will be triggered after the document is printed.
Declaration
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 action that will be triggered after the document is saved.
Declaration
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 action that will be triggered before the document is closed.
Declaration
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 action that will be triggered before the document is printed.
Declaration
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 action that will be triggered before the document is saved.
Declaration
public JavaScriptAction DocumentWillSave { get; set; }
Property Value
JavaScriptAction
The JavaScript action to execute when the document is about to be saved. |