Column.Rename Method
Renames the column.
Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub Rename ( _
    newname As String _
)
'Usage
Dim instance As Column
Dim newname As String
instance.Rename(newname)
public void Rename(
    string newname
)
public:
virtual void Rename(
    String^ newname
) sealed
abstract Rename : 
        newname:string -> unit 
override Rename : 
        newname:string -> unit 
public final function Rename(
    newname : String
)
Parameters
- newname
 Type: System.String
 A String value that specifies the new name of the column.
Implements
Remarks
Note
Columns based on the UserDefinedTableType object cannot be modified and this method generates an exception.
See Also