Generator.TargetType Property

Gets or sets the SQL data type of the column.

Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)

Syntax

'Declaration
Public Property TargetType As String
'Usage
Dim instance As Generator
Dim value As String

value = instance.TargetType

instance.TargetType = value
public string TargetType { get; set; }
public:
property String^ TargetType {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_TargetType ()

/** @property */
public void set_TargetType (String value)
public function get TargetType () : String

public function set TargetType (value : String)

Property Value

A string that contains the SQL data type of the column.

Remarks

This property is decorated with the InputAttribute and the AutoAssignedInput named parameter.

See Also

Reference

Generator Class
Generator Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
GeneratorAttribute
GeneratorInit
IGenerator
TargetType

Concepts

An Overview of Data Generator Extensibility
Specifying Details of Data Generation for a Column

Other Resources

Creating Custom Data Generators