SVGParser.Next C# (CSharp) Method

Next() public method

public Next ( ) : bool
return bool
    public bool Next()
    {
        idx++;
        return !IsEOF;
    }

Usage Example

        protected void GetElementList()
        {
            bool exitFlag = false;

            while (!exitFlag && _xmlImp.Next())
            {
                if (_xmlImp.node is BlockCloseNode)
                {
                    exitFlag = true;
                    continue;
                }
            }
        }
All Usage Examples Of SVGParser::Next