Właściwość NumericScale
Pobiera lub ustawia skali numerycznej typu danych.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Syntax
'Deklaracja
Public Property NumericScale As Integer
Get
Set
'Użycie
Dim instance As DataType
Dim value As Integer
value = instance.NumericScale
instance.NumericScale = value
public int NumericScale { get; set; }
public:
property int NumericScale {
int get ();
void set (int value);
}
member NumericScale : int with get, set
function get NumericScale () : int
function set NumericScale (value : int)
Wartość właściwości
Typ: System. . :: . .Int32
Int32 Wartość, która określa skalę numeryczną typu danych.
Przykłady
Visual Basic
Dim dt As DataType
dt = New DataType(SqlDataType.Decimal)
dt.NumericPrecision = 10
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Decimal)
$dt.NumericScale = 10