IVsEnumExternalErrors.Skip(UInt32) 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.
Skips over the specified number of elements.
public:
int Skip(System::UInt32 celts);
public:
int Skip(unsigned int celts);
int Skip(unsigned int celts);
public int Skip (uint celts);
abstract member Skip : uint32 -> int
Public Function Skip (celts As UInteger) As Integer
Parameters
- celts
- UInt32
[in] Number of elements to skip.
Returns
If successful, returns S_OK. Returns S_FALSE if the celt
parameter is greater than the number of remaining elements. Otherwise, returns an error code.
Remarks
COM Signature
From singlefileeditor.idl:
HRESULT Skip(
[in] ULONG celts
);
If the celt
parameter specifies a value greater than the number of remaining elements, the enumeration is set to the end and S_FALSE is returned.