SkipOverMethod

Applies to:uCalc Transform
Class:uCalc.uCalcTransform.RuleClass
Determines whether a given match is skipped over
Syntax
SkipOver(TrueFalse)
Parameters
TrueFalse
BOOLEAN
(Default = False)
Value that determines with match is skipped over
Returns
Type: RuleClass
Determines whether a given match is skipped over
Remarks
If SkipOver is set to true, then text that matches this pattern will be skipped over. This is useful for preventing uCalc from searching for matches of any other rules within certain text you want to skip over.

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

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

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

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

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

static uCalcPtr SkipOver_(void *  RuleHandle, bool TrueFalse);
            
See also
PassAgain
Prev | Next