Interface IFileDialog
  
  Defines methods and properties for user interaction to open/save files via a dialog.
 
  
  
  Assembly: Sartorius.SAF.Presentation.Controls.dll
  Syntax
  
    public interface IFileDialog
   
  Properties
  
  
  
    View Source
  
  
  FileName
  Gets the file name selected in the dialog.
 
  
  Declaration
  
  Property Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.String | 
         | 
      
    
  
  
  
    View Source
  
  
  FileNames
  Gets an array that contains one file name for each selected file.
 
  
  Declaration
  
    IEnumerable<string> FileNames { get; }
   
  Property Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Collections.Generic.IEnumerable<System.String> | 
         | 
      
    
  
  Methods
  
  
  
    View Source
  
  
  ShowOpenFileDialog(FileDialogArgs)
  Shows the dialog for open file.
 
  
  Declaration
  
    bool ShowOpenFileDialog(FileDialogArgs fileDialogArgs)
   
  Parameters
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Boolean | 
         | 
      
    
  
  
  
    View Source
  
  
  ShowSaveFileDialog(FileDialogArgs)
  Shows the dialog for save file.
 
  
  Declaration
  
    bool ShowSaveFileDialog(FileDialogArgs fileDialogArgs)
   
  Parameters
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Boolean | 
         | 
      
    
  
  Extension Methods