The IEnumMoniker Interface of the com.ms.com package enumerates the components of a moniker or the monikers in a table of monikers.
OLE defines two interfaces that supply an IEnumMoniker interface pointer:
Note The IEnumMoniker interface was added as of versions 2925 through 3167 of the Microsoft virtual machine.
public interface IEnumMoniker extends IUnknown { // Methods public IEnumMoniker Clone(); public void Next(int celt, IMoniker[] rgelt, int[] pceltFetched); public void Reset(); public void Skip(int celt); } IUnknown | +--IEnumMoniker