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.Tools.DataGenerator
Assembly: Microsoft.Data.Schema.Tools (in Microsoft.Data.Schema.Tools.dll)
Syntax
'Declaration
<CLSCompliantAttribute(True)> _
<FlagsAttribute> _
Public Enumeration GeneratorDesignerStyles
[CLSCompliantAttribute(true)]
[FlagsAttribute]
public enum GeneratorDesignerStyles
[CLSCompliantAttribute(true)]
[FlagsAttribute]
public enum class GeneratorDesignerStyles
[<CLSCompliantAttribute(true)>]
[<FlagsAttribute>]
type GeneratorDesignerStyles
public enum 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 enumeration 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.Tools.DataGenerator Namespace
Other Resources
Specifying Details of Data Generation for a Column