GeneratorDesignerStyles Enumeration
Specifies how a data generator appears in the user interface for data generation plans.
Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)
Syntax
'Declaration
<CLSCompliantAttribute(True)> _
<FlagsAttribute> _
Public Enumeration GeneratorDesignerStyles
'Usage
Dim instance As GeneratorDesignerStyles
[CLSCompliantAttribute(true)]
[FlagsAttribute]
public enum GeneratorDesignerStyles
[CLSCompliantAttribute(true)]
[FlagsAttribute]
public enum class GeneratorDesignerStyles
/** @attribute CLSCompliantAttribute(true) */
/** @attribute FlagsAttribute() */
public enum GeneratorDesignerStyles
CLSCompliantAttribute(true)
FlagsAttribute
public enum GeneratorDesignerStyles
Members
Member name | Description | |
---|---|---|
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. | |
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. | |
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 the data bound generator. |
|
None | The generator provides no specific information. |
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.VisualStudio.TeamSystem.Data.DataGenerator Namespace
DesignerStyles
DesignerStyles
DesignerStyles
Concepts
Specifying Details of Data Generation for a Column
Other Resources
Creating Custom Data Generators
Using Standard Data Generators