次の方法で共有


ScriptingOptions.ExtendedProperties プロパティ

オブジェクトの拡張プロパティを、生成されるスクリプトに含めるかどうかを示す Boolean プロパティ値を取得または設定します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
Public Property ExtendedProperties As Boolean 
    Get 
    Set
'使用
Dim instance As ScriptingOptions 
Dim value As Boolean 

value = instance.ExtendedProperties

instance.ExtendedProperties = value
public bool ExtendedProperties { get; set; }
public:
property bool ExtendedProperties {
    bool get ();
    void set (bool value);
}
member ExtendedProperties : bool with get, set
function get ExtendedProperties () : boolean 
function set ExtendedProperties (value : boolean)

プロパティ値

型: System.Boolean
オブジェクトの拡張プロパティを、生成されるスクリプトに含めるかどうかを示す Boolean 値です。 True の場合、オブジェクトの拡張プロパティが、生成されるスクリプトに含まれます。False (既定値) の場合、警告トークンは置き換えられません。

使用例

次のコード例では、オブジェクトの拡張プロパティをスクリプトに含めるように指定します。

Visual Basic

Dim scOps As New ScriptingOptions()
scOps.ExtendedProperties = true

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.ExtendedProperties = $TRUE

関連項目

参照

ScriptingOptions クラス

Microsoft.SqlServer.Management.Smo 名前空間

その他の技術情報

スクリプト