共用方式為


TypeConverter 屬性

Specifies the type converter for an IDTSCustomProperty100 object.

命名空間:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
組件:  Microsoft.SqlServer.DTSPipelineWrap (在 Microsoft.SqlServer.DTSPipelineWrap.dll 中)

語法

'宣告
Property TypeConverter As String
    Get
    Set
'用途
Dim instance As IDTSCustomProperty100
Dim value As String

value = instance.TypeConverter

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

屬性值

型別:System. . :: . .String
A String that specifies the type converter for the IDTSCustomProperty100 object.

備註

The TypeConverter property lets you specify how to convert user-defined types to other data types. One common use is to convert the integer values of an enumeration to the corresponding string for that integer value. When you do this the name of the enumeration is displayed in the property grid instead of the corresponding integer value.

For information on using this property, see "Creating Custom Properties" in 資料流程元件的設計階段方法.