System.Windows.Automation.AutomationElementCollectionEnumerator.MoveNext C# (CSharp) Method

MoveNext() public method

public MoveNext ( ) : bool
return bool
        public bool MoveNext()
        {
            if (this._index < (this._cElem - 1))
            {
                ++this._index;
                return true;
            }
            else
            {
                return false;
            }
        }