Compartilhar via


Propriedade do RDL IDTSCustomProperty100.UITypeEditor

Gets or sets the editor for an IDTSCustomProperty100 object.

Namespace:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (em Microsoft.SqlServer.DTSPipelineWrap.dll)

Sintaxe

'Declaração
Property UITypeEditor As String 
    Get 
    Set
'Uso
Dim instance As IDTSCustomProperty100 
Dim value As String 

value = instance.UITypeEditor

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

Valor da propriedade

Tipo: System.String
The editor for the IDTSCustomProperty100 object.

Comentários

You can specify the editor for an IDTSCustomProperty100 object by providing the fully qualified name of an assembly that implements the editor. Custom editors are useful when a text box value editor is insufficient to effectively modify the values of a custom property.

The fully qualified name of the assembly consists of a string that contains five comma-delimited sections: namespace-qualified class name, assembly name, version, culture, and public key token.

For example, to specify the FileNameEditor as the editor for an IDTSCustomProperty100 object, the following string is provided:

"System.Windows.Forms.Design.FileNameEditor, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
ObservaçãoObservação

The version and PublicKeyToken sections of the string may differ on your computer. This information can be viewed by examining the assembly in the Global Assembly Cache.

For information on using this property, see "Creating Custom Properties" in Métodos de tempo de design de um componente de fluxo de dados.

Consulte também

Referência

IDTSCustomProperty100 Interface

Namespace Microsoft.SqlServer.Dts.Pipeline.Wrapper