Udostępnij za pośrednictwem


Właściwość DtsForEachEnumeratorAttribute.UITypeName

Pobiera lub ustawia interfejs użytkownika Foreach obiektu numeratora.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public Property UITypeName As String
    Get
    Set
'Użycie
Dim instance As DtsForEachEnumeratorAttribute
Dim value As String

value = instance.UITypeName

instance.UITypeName = value
public string UITypeName { get; set; }
public:
property String^ UITypeName {
    String^ get ();
    void set (String^ value);
}
member UITypeName : string with get, set
function get UITypeName () : String
function set UITypeName (value : String)

Wartość właściwości

Typ: System.String
Wpisz nazwę interfejs użytkownika Foreach obiektu numeratora.

Uwagi

This optional property specifies the user interface that is displayed when the ForEach enumerator object is edited in the SQL Server Business Intelligence Development Studio.

Przykłady

Poniższy przykładowy kod zawiera atrybut zastosowane do nowej klasy z wieloma właściwościami zdefiniowane, łącznie z DisplayName, Opis, ForEachEnumeratorContact, i UITypeName.

using System;
using Microsoft.SqlServer.Dts.Runtime;

namespace Microsoft.Samples.SqlServer.Dts
{
// This attribute marks the class as a managed ForEachEnumerator.
    [DtsForEachEnumerator(DisplayName = "MyEnumerator",
      Description="A managed enumerator",
      UITypeName="<FullyQualifiedTypeName>",
      ForEachEnumeratorContact="Name of company to contact")]
    public class MyEnumerator : ForEachEnumerator
    {
        // Insert your enumerator code here.
    }
}
Imports System
Imports Microsoft.SqlServer.Dts.Runtime

Namespace Microsoft.Samples.SqlServer.Dts
  ' This attribute marks the class as a managed ForEachEnumerator.
  <DtsForEachEnumerator(DisplayName:="MyEnumerator", _
    Description:="A managed enumerator", _
    UITypeName:="<FullyQualifiedTypeName>", _
    ForEachEnumeratorContact:="Name of company to contact")> _
  Public Class MyEnumerator
    Inherits ForEachEnumerator
    ' Insert your enumerator code here.
  End Class
End Namespace