Generator.Nullable Property
Gets or sets a value that indicates whether this column can be set to NULL.
Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)
Syntax
'Declaration
Public Property Nullable As Boolean
'Usage
Dim instance As Generator
Dim value As Boolean
value = instance.Nullable
instance.Nullable = value
public bool Nullable { get; set; }
public:
property bool Nullable {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_Nullable ()
/** @property */
public void set_Nullable (boolean value)
public function get Nullable () : boolean
public function set Nullable (value : boolean)
Property Value
true if this column can be set to a null reference (Nothing in Visual Basic); otherwise false.
Remarks
This property is decorated with the InputAttribute and the AutoAssignedInput named parameter.
See Also
Reference
Generator Class
Generator Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
GeneratorAttribute
GeneratorInit
IGenerator
Nullable
Concepts
An Overview of Data Generator Extensibility
Specifying Details of Data Generation for a Column