DistributionColumnCollection.Item Property (Int32)

 

Gets a column object in the collection by index number.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public DistributionColumn this[
    int index
] { get; }
public:
property DistributionColumn^ default[
    int index
] {
    DistributionColumn^ get(int index);
}
member Item : 
        index:int -> DistributionColumn with get
Public ReadOnly Property Item (
    index As Integer
) As DistributionColumn

Parameters

  • index
    Type: System.Int32

    The position of the column in the collection.

Property Value

Type: Microsoft.SqlServer.Management.Smo.DistributionColumn

A column object in the collection by index number.

See Also

Item Overload
DistributionColumnCollection Class
Microsoft.SqlServer.Management.Smo Namespace

Return to top