ScriptingOptions.EnforceScriptingOptions プロパティ
SchemaQualify などのテキスト ベースのオブジェクトにすべてのスクリプト作成オプションの適用を強制するかどうかを示す Boolean プロパティ値を取得または設定します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Property EnforceScriptingOptions As Boolean
Get
Set
'使用
Dim instance As ScriptingOptions
Dim value As Boolean
value = instance.EnforceScriptingOptions
instance.EnforceScriptingOptions = value
public bool EnforceScriptingOptions { get; set; }
public:
property bool EnforceScriptingOptions {
bool get ();
void set (bool value);
}
member EnforceScriptingOptions : bool with get, set
function get EnforceScriptingOptions () : boolean
function set EnforceScriptingOptions (value : boolean)
プロパティ値
型: System.Boolean
テキスト ベースのオブジェクトにすべてのスクリプト作成オプションを強制的に適用するかどうかを示す Boolean 値です。 True の場合、テキスト ベースのオブジェクトにすべてのスクリプト作成オプションが強制的に適用されます。 False (既定値) の場合、オブジェクト テキストは変更されないままスクリプトに含まれます。
説明
オブジェクトはメタデータに基づいて作成されるため、テキスト ベースのオブジェクトのコメントや書式は失われます。
使用例
次のコード例では、テキスト ベースのオブジェクトにスクリプト作成オプションの適用を強制するように指定します。
Visual Basic
Dim scOps As New ScriptingOptions()
scOps.EnforceScriptingOptions = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.EnforceScriptingOptions = $TRUE
関連項目
参照
Microsoft.SqlServer.Management.Smo 名前空間