BExplorer.Shell.DataObject.EnumFORMATETC.Skip C# (CSharp) Method

Skip() public method

Skips the number of elements requested.
public Skip ( int celt ) : int
celt int The number of elements to skip.
return int
            public int Skip(int celt)
            {
                if (currentIndex + celt > formats.Length)
                    return 1; // S_FALSE

                currentIndex += celt;
                return 0; // S_OK
            }