Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Adds a ScriptOption object to the ScriptingOptions object.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Function Add ( _
scriptOption As ScriptOption _
) As ScriptingOptions
'Usage
Dim instance As ScriptingOptions
Dim scriptOption As ScriptOption
Dim returnValue As ScriptingOptions
returnValue = instance.Add(scriptOption)
public ScriptingOptions Add(
ScriptOption scriptOption
)
public:
ScriptingOptions^ Add(
ScriptOption^ scriptOption
)
member Add :
scriptOption:ScriptOption -> ScriptingOptions
public function Add(
scriptOption : ScriptOption
) : ScriptingOptions
Parameters
- scriptOption
Type: Microsoft.SqlServer.Management.Smo.ScriptOption
A ScriptOption object that is to be added to the ScriptingOptions object.
Return Value
Type: Microsoft.SqlServer.Management.Smo.ScriptingOptions
A ScriptingOptions object that contains the added ScriptOption object.
Examples
The following code example adds a new ScriptOption to the ScriptingOptions object.
Visual Basic
Dim scOps As New ScriptingOptions()
scOps.Add(ScriptOption.WithDependencies)
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.Add([Microsoft.SqlServer.Management.Smo.ScriptOption]::WithDependencies)
See Also
Reference
Microsoft.SqlServer.Management.Smo Namespace