[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();
}
'=======================================================
'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
None.
None.