Class JavaScriptAction
Represents an action that executes a JavaScript script when triggered by user interactions or document events.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Actions
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class JavaScriptAction : Action
  Constructors
JavaScriptAction()
JavaScriptAction(String)
Initializes a new instance of the JavaScriptAction class with the specified JavaScript code.
Declaration
public JavaScriptAction(string script)
  Parameters
| 
        System.String
        script
         The JavaScript code to execute when this action is triggered.  | 
    
Properties
Script
Gets or sets the JavaScript code that will be executed when this action is triggered.
Declaration
public string Script { get; set; }
  Property Value
| 
        System.String
         The JavaScript source code as a string.  |