Microsoft SDK for Java

IEnumVariant Interface

The IEnumVariant Interface of the com.ms.com package provides methods for enumerating a collection of variants. You do not need to know the specific type (or types) of elements in the collection. This interface wraps the Component Object Model (COM) interface, IEnumVARIANT.

public interface IEnumVariant extends IUnknown
{
  // Methods
  public IEnumVariant Clone();
  public void Next(int celt, Variant[] rgvar, int[] pceltFetched);
  public void Reset();
  public void Skip(int celt);
}

IUnknown
  |
  +--IEnumVariant

© 1999 Microsoft Corporation. All rights reserved. Terms of use.