다음을 통해 공유


DataType.NumericScale 속성

Gets or sets the numeric scale of the data type.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
Public Property NumericScale As Integer 
    Get 
    Set
‘사용 방법
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)

속성 값

유형: System.Int32
An Int32 value that specifies the numeric scale of the data type.

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

참고 항목

참조

DataType 클래스

Microsoft.SqlServer.Management.Smo 네임스페이스