次の方法で共有


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