Provides command line argument handling that returns quoted spaces to the application; this is to ensure compatibility with
                  product versions 2.3.2 and earlier. 
                  		
                  	  
               
            
 
            	 
             
               		
               Restriction: This tunable is supported for .NET COBOL only. 
                  		
               
 
               	 
              
            	 
            
               Syntax: 
 
               		 
               		>>-----set command_line_arguments_unquoted=-.-TRUE-.-----------><
                                            +-FALSE+ 
               	   
            	 
            
               Parameters:
 
               		 
               		
                
                  		
                  
                      
                        			  
                        			  
                        			 
                         
                           				
                            
                              				  
                              | TRUE 
                                 				  
                               |  
                              				  
                              When a command line argument contains spaces and is enclosed in quotation marks, the argument is returned to the application
                                 unquoted. 
                                 				  
                               |  
                              				
                           
 
                           				
                            
                              				  
                              | FALSE 
                                 				  
                               |  
                              				  
                              When a command line argument contains spaces and is enclosed in quotation marks, the argument is returned to the application
                                 within quotation marks. 
                                 				  
                               |  
                              				
                           
 
                           			 
                         
                        		  
                     
                    
                  		
                 
               	 
              
            	 
            
               Properties:
 
               		 
               		
                
                  		
                  
                      
                        			  
                        			  
                        			 
                         
                           				
                            
                              				  
                              | Default: 
                                 				  
                               |  
                              				  
                              FALSE 
                                 				  
                               |  
                              				
                           
 
                           				
                            
                              				  
                              | IDE equivalent: 
                                 				  
                               |  
                              				  
                               None 
                                 				  
                               |  
                              				
                           
 
                           			 
                         
                        		  
                     
                    
                  		
                 
               	 
              
            	 
            
               Example
               		
               		
               Assuming that 
                  		  myprog is an application that displays the arguments it accepts from the command line, the following shows the results with and
                  without this tunable being in effect:
                  		
               
               		myprog "A B"
A B   *> returned when command_line_arguments_unquoted=TRUE
"A B" *> returned when command_line_arguments_unquoted=FALSE