IEnumGUID (Interfaces)
Last changed: -119.202.80.202

.
Summary
TODO - a short description

C# Definition:

    [ComImport, Guid("0002E000-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), ComVisible(false)]
    public interface IEnumGUID
    {
        int Next(int celt, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=0)]Guid[] rgelt);
        void Skip(int celt);
        void Reset();
        [return: MarshalAs(UnmanagedType.Interface)]
        IEnumGUID Clone();
    }

VB Definition:

    '=======================================================
    'Code converted from C# to VB by online service at Telerik (www.telerik.com)
    'Conversion powered by NRefactory, Built and maintained by Todd Anglin and Telerik
    'Converted code has not been tested.
    '=======================================================
    <ComImport(), Guid("0002E000-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), ComVisible(False)> _
    Public Interface IEnumGUID
        Function [Next](ByVal celt As Integer,         <Out(), MarshalAs(UnmanagedType.LPArray, SizeParamIndex := 0)> _
    ByVal rgelt As Guid()) As Integer
        Sub Skip(ByVal celt As Integer)
        Sub Reset()
        <[return]: MarshalAs(UnmanagedType.[Interface])> _
        Function Clone() As IEnumGUID
    End Interface

User-Defined Types:

None.

Notes:

None.

Documentation
IEnumGUID on MSDN