DataType.Decimal メソッド

指定された型を表すオブジェクトを返します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
Public Shared Function Decimal ( _
    scale As Integer, _
    precision As Integer _
) As DataType
'使用
Dim scale As Integer 
Dim precision As Integer 
Dim returnValue As DataType 

returnValue = DataType.Decimal(scale, _
    precision)
public static DataType Decimal(
    int scale,
    int precision
)
public:
static DataType^ Decimal(
    int scale, 
    int precision
)
static member Decimal : 
        scale:int * 
        precision:int -> DataType
public static function Decimal(
    scale : int, 
    precision : int
) : DataType

パラメーター

戻り値

型: Microsoft.SqlServer.Management.Smo.DataType
DataType 値オブジェクトです。

使用例

Visual Basic

Dim dt As DataType
dt = New DataType(SqlDataType.Decimal, 10, 3)

PowerShell

$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Decimal, 10, 3)

関連項目

参照

DataType クラス

Microsoft.SqlServer.Management.Smo 名前空間