Compartir a través de


Interfaz IDTSFriendlyEnumCollection100

Contains a collection of IDTSFriendlyEnum100 objects.

Espacio de nombres:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
Ensamblado:  Microsoft.SqlServer.DTSPipelineWrap (en Microsoft.SqlServer.DTSPipelineWrap.dll)

Sintaxis

'Declaración
<GuidAttribute("62A4A8D8-3B64-4EB0-BA77-6AE679985259")> _
Public Interface IDTSFriendlyEnumCollection100 _
    Inherits IEnumerable
'Uso
Dim instance As IDTSFriendlyEnumCollection100
[GuidAttribute("62A4A8D8-3B64-4EB0-BA77-6AE679985259")]
public interface IDTSFriendlyEnumCollection100 : IEnumerable
[GuidAttribute(L"62A4A8D8-3B64-4EB0-BA77-6AE679985259")]
public interface class IDTSFriendlyEnumCollection100 : IEnumerable
[<GuidAttribute("62A4A8D8-3B64-4EB0-BA77-6AE679985259")>]
type IDTSFriendlyEnumCollection100 =  
    interface 
        interface IEnumerable 
    end
public interface IDTSFriendlyEnumCollection100 extends IEnumerable

El tipo IDTSFriendlyEnumCollection100 expone los siguientes miembros.

Propiedades

  Nombre Descripción
Propiedad pública Count Gets the number of elements contained in an IDTSFriendlyEnumCollection100 collection.
Propiedad pública IsFlags Gets a value that specifies whether the values of the IDTSFriendlyEnum100 objects in an IDTSFriendlyEnumCollection100 can be combined together.
Propiedad pública Item Gets the IDTSFriendlyEnumCollection100 specified by the Index parameter.

Arriba

Métodos

  Nombre Descripción
Método público GetEnumerator Returns an IEnumerator that can iterate through an IDTSFriendlyEnumCollection100.

Arriba

Comentarios

The IDTSFriendlyEnumCollection100 collection is a helper interface used by native C++ component developers to expose names for the values of an enumeration, when the enumeration is specified as the value of an IDTSCustomProperty100 object. The IDTSFriendlyEnumCollection100 and IDTSFriendlyEnum100 are used in combination with the following macros to provide friendly names for the values of an enumeration in DTS designer.

Macro

Description

BEGIN_FRIENDLY_NAME_ENUM_LIST

Starts the friendly name enumeration list.

BEGIN_FRIENDLY_NAME_ENUM( EnumerationName, IsFlags)

Starts a friendly name enumeration list block. This is specified once for each enumeration. The EnumerationName parameter specifies the name of the enumeration and the IsFlags parameter specifies whether the values in the enumeration can be ORed together.

FRIENDLY_NAME(Value, NameID)

Adds a friendly name for a specific value in the enumeration specified in the BEGIN_FRIENDLY_NAME_ENUM. The Value parameter specifies the item in the enumeration and the NameID parameter specifies the string that is displayed for the enumeration value.

END_FRIENDLY_NAME_ENUM

Indicates the end of the friendly enumeration; specified once for each BEGIN_FRIENDLY_ENUM macro.

END_FRIENDLY_ENUM_LIST

End the friendly enumeration name list.

After defining a friendly enumeration using the macros listed above, the TypeConverter property of the IDTSCustomProperty100 object is assigned the value of the EnumerationName parameter specified in the BEGIN_FRIENDLY_NAME_ENUM macro.

Vea también

Referencia

Espacio de nombres Microsoft.SqlServer.Dts.Pipeline.Wrapper