FlowControl.ForNextCheckObj(Object, Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Increments a For...Next
loop.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static bool ForNextCheckObj(System::Object ^ Counter, System::Object ^ LoopObj, System::Object ^ % CounterResult);
public static bool ForNextCheckObj (object Counter, object LoopObj, ref object CounterResult);
static member ForNextCheckObj : obj * obj * obj -> bool
Public Function ForNextCheckObj (Counter As Object, LoopObj As Object, ByRef CounterResult As Object) As Boolean
Public Shared Function ForNextCheckObj (Counter As Object, LoopObj As Object, ByRef CounterResult As Object) As Boolean
Parameters
- Counter
- Object
The loop counter variable.
- LoopObj
- Object
An object that contains verified values for loop values.
- CounterResult
- Object
The counter value for the next loop iteration.
Returns
False
if the loop has terminated; otherwise, True
.
Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.