ScriptingOptions.ClusteredIndexes Property
Gets or sets a Boolean property value that specifies whether statements that define clustered indexes are included in the generated script.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
The following code example specifies that statements defining clustered indexes are included in the script.
Visual Basic
Dim scOps As New ScriptingOptions() scOps.ClusteredIndexes = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions $scOps.ClusteredIndexes = $TRUE