CaseSensitiveMethod

Applies to:uCalc Transform
Class:uCalc.uCalcTransform.RuleClass
Sets whether a rule is case-sensitive
Syntax
CaseSensitive(TrueFalse)
Parameters
TrueFalse
BOOLEAN
Value that determines case sensitivity
Returns
Type: RuleClass
Sets whether a rule is case-sensitive
Remarks
This sets whether a rule is case sensitive or not.

DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="CaseSensitive")> _

Private Function CaseSensitive__(ByVal RuleHandle As IntPtr,ByVal TrueFalse As Int32) As IntPtr
End Function
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="CaseSensitive")]

protected static extern IntPtr CaseSensitive_(IntPtr RuleHandle, bool TrueFalse);
            
{DLLImport}function CaseSensitive__(RuleHandle: System.Pointer;TrueFalse: Integer): System.Pointer; cdecl; external uCalcDLL name 'CaseSensitive';

            
typedef uCalcPtr (* __CaseSensitive)(void *RuleHandle, bool TrueFalse); 

            
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "CaseSensitive")]

static uCalcPtr CaseSensitive_(void *  RuleHandle, bool TrueFalse);
            
Prev | Next