IDTSOutputColumn100.Precision Property

 

Applies To: SQL Server 2016 Preview

Gets the total number of digits contained in an output column.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(103)]
int Precision {
    [DispIdAttribute(103)]
    get;
}
[DispIdAttribute(103)]
property int Precision {
    [DispIdAttribute(103)]
    int get();
}
[<DispIdAttribute(103)>]
abstract Precision : int with get
<DispIdAttribute(103)>
ReadOnly Property Precision As Integer

Property Value

Type: System.Int32

An Integer that represents the number of digits stored in the output column.

Remarks

If the column DataType is not DT_NUMERIC or DT_DECIMAL, this property is zero.

For more information about Integration Services data types and their properties, see Integration Services Data Types.

See Also

IDTSOutputColumn100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top