This sets whether a rule is code block sensitive or not.
      
    
            
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="CodeBlockSensitive")> _
Private Function CodeBlockSensitive__(ByVal RuleHandle As IntPtr,ByVal TrueFalse As Int32) As IntPtr
End Function
            
          
        
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="CodeBlockSensitive")]
protected static extern IntPtr CodeBlockSensitive_(IntPtr RuleHandle, bool TrueFalse);
            
          
        
            
{DLLImport}function CodeBlockSensitive__(RuleHandle: System.Pointer;TrueFalse: Integer): System.Pointer; cdecl; external uCalcDLL name 'CodeBlockSensitive';
            
          
        
            
typedef uCalcPtr (* __CodeBlockSensitive)(void *RuleHandle, bool TrueFalse); 
            
          
        
            
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "CodeBlockSensitive")]
static uCalcPtr CodeBlockSensitive_(void *  RuleHandle, bool TrueFalse);