IDTSCustomProperty100.UITypeEditor 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置对象的 IDTSCustomProperty100 编辑器。
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部分在您的电脑上可能不同。 这些信息可以通过在全局汇编缓存中查看汇编。
有关如何使用该属性的信息,请参见 数据流 组件设计时方法中的“创建自定义属性”。