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
public Type Type { get; }
public:
property Type^ Type {
    Type^ get ();
}
/** @property */
public Type get_Type ()
public function get Type () : Type

Property Value

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.

See Also

Reference

DesignerInit Class
DesignerInit Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
DefaultGeneratorDesigner Class
DefaultDistributionDesigner Class
IDesigner