IVsEnumCodeBlocks.Skip(UInt32) Method

Definition

Skips over the specified number of elements.

public:
 int Skip(System::UInt32 celt);
public:
 int Skip(unsigned int celt);
int Skip(unsigned int celt);
public int Skip (uint celt);
abstract member Skip : uint32 -> int
Public Function Skip (celt As UInteger) As Integer

Parameters

celt
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 celt  
);  

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.

Applies to