Class LaunchAction
Represents an action that launches an external application or opens a file using the default application associated with the file type.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Actions
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class LaunchAction : Action
  Constructors
LaunchAction()
LaunchAction(String)
Initializes a new instance of the LaunchAction class with the specified file path.
Declaration
public LaunchAction(string file)
  Parameters
| 
        System.String
        file
         The path or name of the file to be launched or opened.  | 
    
Properties
File
Gets or sets the path or name of the file to be launched or opened.
Declaration
public string File { get; set; }
  Property Value
| 
        System.String
         The file path or name.  | 
    
OpenInNewWindow
Gets or sets a value indicating whether to open the file or application in a new window.
Declaration
public bool OpenInNewWindow { get; set; }
  Property Value
| 
        System.Boolean
         true if the file should be opened in a new window; otherwise, false.  |