Parameter
        
            
                Last updated on 
                
                    Apr 27, 2021
                
            
            
        
        
    
Description
Determines whether a struct is case-sensitive.
Returns
Boolean
Category
History
ColdFusion (2021 release): Added this function.
Syntax
StructIsCaseSensitive(struct inputStruct)
Parameters
| 
                    
     | 
                
            
                
                    
     Description  | 
                
            
        
|---|---|
| 
                    
     inputStruct  | 
            
                
                
                    
     (Required) The struct that needs to be checked for case sensitivity.  | 
            
        
Example
<cfscript> 
    cloudVendors=StructNew("casesensitive") 
    cloudVendors.Azure="Microsoft" 
    cloudVendors.Aws= "Amazon" 
    cloudVendors.ACC = "Adobe" 
    cloudVendors.Gce= "Google" 
    cloudVendors.OCP = "Oracle" 
    writeOutput(StructIsCaseSensitive(cloudVendors)); // should output YES 
    writeOutput(cloudVendors.isCaseSensitive()); // should output YES 
</cfscript>