Interface IColumnMetaData
The methods and properties in the IColumnMetaData interface manage data based in table columns.
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IColumnMetaData : IMetaData
Remarks
The methods and properties in the IColumnMetaData interface manage data based in table columns.
Properties
ColumnType
Gets the data type of a column.
Declaration
ColumnType ColumnType { get; }
Property Value
Type | Description |
---|---|
ColumnType | The value returned is a member of the ColumnType enumeration. |
Remarks
The value returned is a member of the ColumnType enumeration.
IsKey
Gets whether a column is defined to be the key or part of the key for the table.
Declaration
bool IsKey { get; }
Property Value
Type | Description |
---|---|
bool | Gets whether a column is defined to be the key or part of the key for the table. |
Remarks
A key can be a single column or composed of multiple columns.
Max
Gets the maximum number of characters for the value of a column.
Declaration
int Max { get; }
Property Value
Type | Description |
---|---|
int | maximum length of text |
Remarks
Gets the maximum number of characters for the value of a column.
Min
Gets the maximum number of characters for the value of a column.
Declaration
int Min { get; }
Property Value
Type | Description |
---|---|
int | minimum length of text |
Remarks
Gets the minimum number of characters for the value of a column.
Methods
ToString()
Generates a string object that represents the current values of this IColumnMetaData object.
Declaration
string ToString()
Returns
Type | Description |
---|---|
string | the string representation of this object |