IsChecked 属性

Gets or sets a value that indicates whether the CHECK constraint applies to new data only or also to existing data.

命名空间:  Microsoft.SqlServer.Management.SqlParser.Metadata
程序集:  Microsoft.SqlServer.Management.SqlParser(在 Microsoft.SqlServer.Management.SqlParser.dll 中)

语法

声明
Property IsChecked As Boolean
    Get
    Set
用法
Dim instance As IMutableCheckConstraint
Dim value As Boolean

value = instance.IsChecked

instance.IsChecked = value
bool IsChecked { get; set; }
property bool IsChecked {
    bool get ();
    void set (bool value);
}
abstract IsChecked : bool with get, set
function get IsChecked () : boolean
function set IsChecked (value : boolean)

属性值

类型:System. . :: . .Boolean
true if the CHECK constraint applies to both existing data and newly added data; false if it applies only to newly added data.

实现

ICheckConstraint. . :: . .IsChecked