IDTSCustomProperty100.UITypeEditor 属性

定义

public:
 property System::String ^ UITypeEditor { System::String ^ get(); void set(System::String ^ value); };
[System.Runtime.InteropServices.DispId(105)]
public string UITypeEditor { [System.Runtime.InteropServices.DispId(105)] get; [System.Runtime.InteropServices.DispId(105)] set; }
[<System.Runtime.InteropServices.DispId(105)>]
[<get: System.Runtime.InteropServices.DispId(105)>]
[<set: System.Runtime.InteropServices.DispId(105)>]
member this.UITypeEditor : string with get, set
Public Property UITypeEditor As String

属性值

IDTSCustomProperty100 对象的编辑器。

属性

注解

可以通过提供实现编辑器的程序集的完全限定名称来 IDTSCustomProperty100 指定对象的编辑器。 当文本框值编辑器不足以有效修改自定义属性的值时,自定义编辑器非常有用。

程序集的完全限定名称由包含五个逗号分隔的节的字符串组成:命名空间限定类名、程序集名称、版本、区域性和公钥令牌。

例如,若要将 FileNameEditor 指定为对象的编辑器 IDTSCustomProperty100 ,将提供以下字符串:

"System.Windows.Forms.Design.FileNameEditor, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"  

备注

字符串的版本和 PublicKeyToken 部分可能在你的计算机上有所不同。 可以通过检查全局程序集缓存中的程序集来查看此信息。

有关使用此属性的信息,请参阅数据流组件的设计时方法中的“创建自定义属性”。

适用于