GeneratorDesignerStyles Enumeration

Specifies how a data generator appears in the user interface for data generation plans.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

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

Syntax

'Declaration
<FlagsAttribute> _
<CLSCompliantAttribute(True)> _
Public Enumeration GeneratorDesignerStyles
'Usage
Dim instance As GeneratorDesignerStyles
[FlagsAttribute]
[CLSCompliantAttribute(true)]
public enum GeneratorDesignerStyles
[FlagsAttribute]
[CLSCompliantAttribute(true)]
public enum class GeneratorDesignerStyles
public enum GeneratorDesignerStyles
[<FlagsAttribute>]
[<CLSCompliantAttribute(true)>]
type GeneratorDesignerStyles

Members

Member name Description
None The generator does not provide any specific information.
FilterOnCoercibleOutputs The user clicks a data generator in the list in the Generator column in the Column Details window. Not all generators are available for all columns. For example, the String generator is not available for integer columns.

The generator requests to be excluded if it has no output properties that can be coerced to the type of the column. All standard data generators use this value, except for the data bound generator.

Deterministic The generator produces deterministic results. This member is informational; it tells the user of the generator what to expect. Currently, the default designer does not use this member. You can specify this value in a custom designer.
CanProduceUniqueValues The generator can produce unique values. This member is required for a generator to be the default generator for a column type that supports unique constraints.

Remarks

Use this enum when you set the GeneratorStylesAttribute. The designer uses GeneratorDesignerStyles to determine whether to display a generator in a given context.

FilterOnCoercibleOutputs is the default value.

See Also

Reference

Microsoft.Data.Schema.DataGenerator Namespace

DesignerStyles

DesignerStyles

DesignerStyles

Other Resources

Specifying Details of Data Generation for a Column

Creating Custom Data Generators

Using Standard Data Generators