IndexedColumnCollection.Add Method (IndexedColumn, String)

Adds an IndexedColumn object to the position after a specified, existing IndexedColumn object in the IndexedColumnCollection collection.

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

Syntax

'Declaration
Public Sub Add ( _
    indexedColumn As IndexedColumn, _
    insertAtColumnName As String _
)
'Usage
Dim instance As IndexedColumnCollection
Dim indexedColumn As IndexedColumn
Dim insertAtColumnName As String

instance.Add(indexedColumn, insertAtColumnName)
public void Add(
    IndexedColumn indexedColumn,
    string insertAtColumnName
)
public:
void Add(
    IndexedColumn^ indexedColumn, 
    String^ insertAtColumnName
)
member Add : 
        indexedColumn:IndexedColumn * 
        insertAtColumnName:string -> unit 
public function Add(
    indexedColumn : IndexedColumn, 
    insertAtColumnName : String
)

Parameters