The IEnumSTATSTG interface of the com.ms.com package enumerates through an array of STATSTG structures, which contain statistical information about an open storage, stream, or byte array object.
Note The IEnumSTATSTG interface was added as of versions 2925 through 3167 of the Microsoft virtual machine.
public interface IEnumSTATSTG extends IUnknown { // Methods public IEnumSTATSTG Clone() public void Next(int celt, STATSTG[] rgelt, int[] pceltFetched); public void Reset(); public void Skip(int celt); ; } IUnknown | +--IEnumSTATSTG