IDataInputServiceChangeDataStorageColumnLength 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 (9.0.0.1000)
Syntaxvoid ChangeDataStorageColumnLength(
DataInputTransform transform,
string name,
int maximumLength
)
Sub ChangeDataStorageColumnLength (
transform As DataInputTransform,
name As String,
maximumLength As Integer
)
void ChangeDataStorageColumnLength(
DataInputTransform^ transform,
String^ name,
int maximumLength
)
abstract ChangeDataStorageColumnLength :
transform : DataInputTransform *
name : string *
maximumLength : int -> unit
Parameters
- transform
- Type: Dundas.BI.Data.TransformsDataInputTransform
The data input transform. - name
- Type: SystemString
The column name. - maximumLength
- Type: SystemInt32
The maximum length.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | transform is . |
| ArgumentException | name is or empty or does not exist in the specified transform. |
| ArgumentOutOfRangeException | maximumLength is invalid. |
| InvalidOperationException | The name is not string based, or the maximum size cannot be set at the specified value. |
See Also