DataColumn.AutoIncrementSeed Propriedade

Definição

Obtém ou define o valor inicial de uma coluna que tem a propriedade AutoIncrement definida como true. O padrão é 0.

public:
 property long AutoIncrementSeed { long get(); void set(long value); };
public long AutoIncrementSeed { get; set; }
[System.Data.DataSysDescription("DataColumnAutoIncrementSeedDescr")]
public long AutoIncrementSeed { get; set; }
member this.AutoIncrementSeed : int64 with get, set
[<System.Data.DataSysDescription("DataColumnAutoIncrementSeedDescr")>]
member this.AutoIncrementSeed : int64 with get, set
Public Property AutoIncrementSeed As Long

Valor da propriedade

Int64

O valor inicial para o recurso AutoIncrement.

Atributos

Exemplos

O exemplo a seguir define as propriedades e AutoIncrementStep as AutoIncrementAutoIncrementSeedpropriedades.

private void AddAutoIncrementColumn()
{
    DataColumn column = new DataColumn();
    column.DataType = System.Type.GetType("System.Int32");
    column.AutoIncrement = true;
    column.AutoIncrementSeed = 1000;
    column.AutoIncrementStep = 10;

    // Add the column to a new DataTable.
    DataTable table = new DataTable("table");
    table.Columns.Add(column);
}
Private Sub AddAutoIncrementColumn()
    Dim column As New DataColumn()
    column.DataType = System.Type.GetType("System.Int32")
    With column
        .AutoIncrement = True
        .AutoIncrementSeed = 1000
        .AutoIncrementStep = 10
    End With

    ' Add the column to a new DataTable.
    Dim table As DataTable
    table = New DataTable
    table.Columns.Add(column)
End Sub

Aplica-se a

Confira também