Difference between revisions of "TFtpClient.Binary"

From Overbyte
Jump to navigation Jump to search
Line 1: Line 1:
'''Declaration'''<br>
+
== Definition ==
property Binary : Boolean;<br><br>
 
  
'''Default Value'''<br>
+
'''property''' Binary: '''Boolean''';
True<br><br>
 
 
 
'''Description'''<br>
 
Property used to set whether files are transferred in either binary or ASCII mode. Binary has no effect until ''TypeSet'' or ''TypeSetAsync'' have been successfully called.
 
 
 
''TypeSetBinary'', ''TypeSetBinaryAsync'', ''TypeSetAscii'', and ''TypeAsciiAsync'' can perform these steps in one call.
 
 
 
<br><br>
 
 
 
'''Example'''<br>
 
 
 
    FtpClient1.Binary := True;
 
    if (FtpClient1.TypeSet) then
 
      Application.MessageBox('Transfer mode set to Binary', 'FTP', MB_OK);
 

Revision as of 22:03, 10 September 2006

Definition

property Binary: Boolean;