Compartir a través de


IsChecked Propiedad

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

Espacio de nombres:  Microsoft.SqlServer.Management.SqlParser.Metadata
Ensamblado:  Microsoft.SqlServer.Management.SqlParser (en Microsoft.SqlServer.Management.SqlParser.dll)

Sintaxis

'Declaración
Property IsChecked As Boolean
    Get
    Set
'Uso
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)

Valor de la propiedad

Tipo: 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.

Implementa

ICheckConstraint. . :: . .IsChecked