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 部分可能在计算机上有所不同。 可以通过检查全局程序集缓存中的程序集来查看此信息。
有关使用此属性的信息,请参阅 数据流 组件的设计时方法中的“创建自定义属性”。