Generator.TableName Property

Gets or sets the name of the table to which the column belongs.

Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)

Syntax

'Declaration
Public Property TableName As String
'Usage
Dim instance As Generator
Dim value As String

value = instance.TableName

instance.TableName = value
public string TableName { get; set; }
public:
property String^ TableName {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_TableName ()

/** @property */
public void set_TableName (String value)
public function get TableName () : String

public function set TableName (value : String)

Property Value

A string that contains the name of the table.

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
TableName

Concepts

An Overview of Data Generator Extensibility
Specifying Details of Data Generation for a Column

Other Resources

Creating Custom Data Generators