GetItemAt() public method

public GetItemAt ( int index ) : TxtRecordItem
index int
return TxtRecordItem
Example #1
0
        public bool MoveNext()
        {
            if (index < 0 || index >= record.Count)
            {
                return(false);
            }

            current_item = record.GetItemAt(index++);
            return(current_item != null);
        }