InputAttribute.TypeConverter Property
Gets or sets the type converter that displays the input property.
Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)
Syntax
'Declaration
Public Property TypeConverter As Type
'Usage
Dim instance As InputAttribute
Dim value As Type
value = instance.TypeConverter
instance.TypeConverter = value
public Type TypeConverter { get; set; }
public:
property Type^ TypeConverter {
Type^ get ();
void set (Type^ value);
}
/** @property */
public Type get_TypeConverter ()
/** @property */
public void set_TypeConverter (Type value)
public function get TypeConverter () : Type
public function set TypeConverter (value : Type)
Property Value
A Type that contains the type of the converter.
Remarks
You use TypeConverter for input properties that should show a list in the Properties window. The type converter must implement a default constructor.
See Also
Tasks
How to: Add Input Properties to a Data Generator
Reference
InputAttribute Class
InputAttribute Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
TypeConverter
InputDescriptor