DistributionColumnCollection.Item Property (String)

 

Gets a column object in the collection by name.

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

Syntax

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

Parameters

  • name
    Type: System.String

    The name of the column object in the collection.

Property Value

Type: Microsoft.SqlServer.Management.Smo.DistributionColumn

A column object in the collection by name.

See Also

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

Return to top