This topic has not yet been rated - Rate this topic

ScriptingOptions.Remove Method

Removes a ScriptOption object from the ScriptingOptions object.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
public ScriptingOptions Remove(
	ScriptOption scriptOption
)

Parameters

scriptOption
Type: Microsoft.SqlServer.Management.Smo.ScriptOption
A ScriptOption object to be removed from the ScriptingOptions object.

Return Value

Type: Microsoft.SqlServer.Management.Smo.ScriptingOptions
A ScriptingOptions object that does not contain the removed ScriptOption object.

The following code example removes a script option.

Visual Basic

Dim scOps As New ScriptingOptions()
scOps.WithDependencies = true
scOps.Remove(ScriptOption.WithDependencies)

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.WithDependencies = $TRUE
$scOps.Remove([Microsoft.SqlServer.Management.Smo.ScriptOption]::WithDependencies)
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.