Open this page in the API Guide

IDataInputService.ChangeDataStorageColumnLength Method

Changes the length of the data storage column, when the column is string based.

Namespace:  Dundas.BI.Data.DataInput
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
void ChangeDataStorageColumnLength(
	DataInputTransform transform,
	string name,
	int maximumLength
)

Parameters

transform
Type: Dundas.BI.Data.Transforms.DataInputTransform
The data input transform.
name
Type: System.String
The column name.
maximumLength
Type: System.Int32
The maximum length.
Exceptions
ExceptionCondition
ArgumentNullExceptiontransform is null.
ArgumentExceptionname is null or empty or does not exist in the specified transform.
ArgumentOutOfRangeExceptionmaximumLength is invalid.
InvalidOperationExceptionThe name is not string based, or the maximum size cannot be set at the specified value.
See Also