Default propriété
Gets the default bound to the column.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (dans Microsoft.SqlServer.Smo.dll)
Syntaxe
'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)> _
Public Property Default As String
Get
Set
'Utilisation
Dim instance As Column
Dim value As String
value = instance.Default
instance.Default = value
[SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)]
public string Default { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::ReadOnlyAfterCreation)]
public:
property String^ Default {
String^ get ();
void set (String^ value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)>]
member Default : string with get, set
function get Default () : String
function set Default (value : String)
Valeur de la propriété
Type : System. . :: . .String
A Default object that specifies the default bound to the column.
Notes
The Default property specifies a default. This can be bound to the column by using the BindToColumn method.
Voir aussi