Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

IEnumIDList (Interfaces)
 
.
Summary
TODO - a short description

C# Definition:

    [ComImport]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    [Guid("000214F2-0000-0000-C000-000000000046")]

    public interface IEnumIDList {

        // Retrieves the specified number of item identifiers in the
        // enumeration sequence and advances the current position by
        // the number of items retrieved.
        [PreserveSig()]
        uint Next(      
            uint celt,                // Number of elements in the array pointed to by the rgelt parameter.

            out IntPtr rgelt,        // Address of an array of ITEMIDLIST pointers that receives the item
                                    // identifiers. The implementation must allocate these item identifiers
                                    // using the Shell's allocator (retrieved by the SHGetMalloc function).
                                    // The calling application is responsible for freeing the item
                                    // identifiers using the Shell's allocator.

            out IntPtr pceltFetched    // Address of a value that receives a count of the item identifiers
                                    // actually returned in rgelt. The count can be smaller than the value
                                    // specified in the celt parameter. This parameter can be NULL only
                                    // if celt is one.
            );

        // Skips over the specified number of elements in the enumeration sequence.
        [PreserveSig()]
        uint Skip(
            uint celt                // Number of item identifiers to skip.
            );

        // Returns to the beginning of the enumeration sequence.
        [PreserveSig()]
        uint Reset();

        // Creates a new item enumeration object with the same contents and state as the current one.
        [PreserveSig()]
        uint Clone(
            out IEnumIDList ppenum        // Address of a pointer to the new enumeration object. The calling
                                    // application must eventually free the new object by calling its Release member function.
            );
    }

VB Definition:

<ComImport> _
<Guid("TODO")> _
'TODO: Insert <InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _ if this doesn't derive from IDispatch
Interface IEnumIDList
   TODO
End Interface

User-Defined Types:

None.

Notes:

None.

Documentation
IEnumIDList on MSDN

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions