Share via


DefaultGeneratorDesigner.DesignerStyles Property

Gets the style information for the data generator to which this designer corresponds.

Namespace:  Microsoft.Data.Schema.DataGenerator
Assembly:  Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)

Syntax

'Declaration
Public Overridable ReadOnly Property DesignerStyles As GeneratorDesignerStyles
'Usage
Dim instance As DefaultGeneratorDesigner 
Dim value As GeneratorDesignerStyles 

value = instance.DesignerStyles
public virtual GeneratorDesignerStyles DesignerStyles { get; }
public:
virtual property GeneratorDesignerStyles DesignerStyles {
    GeneratorDesignerStyles get ();
}
public function get DesignerStyles () : GeneratorDesignerStyles

Property Value

Type: Microsoft.Data.Schema.DataGenerator.GeneratorDesignerStyles
Returns a GeneratorDesignerStyles value that contains the style information for the data generator to which this designer corresponds.

Implements

IGeneratorDesigner.DesignerStyles

Remarks

One instance of the designer exists for each column that is included in the data generation plan. The DefaultGeneratorDesigner queries the styles from the GeneratorStylesAttribute of the data generator.

The possible values of this property are None, FilterOnCoercibleOutputs, Deterministic, and CanProduceUniqueValues.

.NET Framework Security

See Also

Reference

DefaultGeneratorDesigner Class

DefaultGeneratorDesigner Members

Microsoft.Data.Schema.DataGenerator Namespace

Other Resources

How to: Create Custom Data Generators

Walkthrough: Creating a Custom Data Generator