Share via


DesignerInit.Type Property

Gets or sets the type of the distribution or data generator that this designer supports.

Namespace:  Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly:  Microsoft.VisualStudio.TeamSystem.Data (in Microsoft.VisualStudio.TeamSystem.Data.dll)

Syntax

'Declaration
Public Property Type As Type
'Usage
Dim instance As DesignerInit
Dim value As Type

value = instance.Type

instance.Type = value
public Type Type { get; internal set; }
public:
property Type^ Type {
    Type^ get ();
    void set (Type^ value);
}
public function get Type () : Type
public function set Type (value : Type)

Property Value

Type: System.Type
A Type that contains the type of the generator that this designer supports.

Remarks

One instance of a designer exists for each column that is included in the data generation plan. Type is the type of the data generator for the column that this designer supports.

One instance of a designer also exists for each distribution that is used for a numeric column in the data generation plan. In that case, Type is the type of the distribution.

Permissions

See Also

Reference

DesignerInit Class

DesignerInit Members

Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace

DefaultGeneratorDesigner

DefaultDistributionDesigner

IDesigner