| 
 Usage Example 
type 
    SaveDialog1: TSaveDialog; 
... 
  
SaveDialog1.Title := 'Save As...'; 
SaveDialog1.Filter := '*.txt'; 
SaveDialog1.FileName := 'somefile.txt'; 
SaveDialog1.Execute; 
 | 
 
 
 
  
This is how the dialog is shown on each platform: 
  
Windows Platform 
  
  
  
HTML5 Platform 
  
  
  
 | 
  
In order to save a File from the remote machine WebFMX will do a download into the LocalMachine.  
 | 
 
 
 
  
  
 |