Decimal Método
Returns an object that represents the specified type.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
Public Shared Function Decimal ( _
scale As Integer, _
precision As Integer _
) As DataType
'Uso
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
Parámetros
- scale
Tipo: System. . :: . .Int32
An Int32 value that specifies the scale.
- precision
Tipo: System. . :: . .Int32
An Int32 value that specifies the precision.
Valor devuelto
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .DataType
A DataType value object.
Vea también