ColumnInfo(String, String, String, Type, IEnumerable<PromptToExpressionRequestBase.ColumnInfo>) Constructor
Initializes a new instance of the PromptToExpressionRequestBase.ColumnInfo class with specified settings.
Namespace: DevExpress.AIIntegration.Extensions
Assembly: DevExpress.AIIntegration.v25.2.dll
NuGet Package: DevExpress.AIIntegration
Declaration
public ColumnInfo(
string name,
string caption,
string description,
Type type,
IEnumerable<PromptToExpressionRequestBase.ColumnInfo> children
)
Parameters
| Name | Type | Description |
|---|---|---|
| name | String | The column name. This value is assigned to the ColumnName property. |
| caption | String | The column caption. This value is assigned to the Caption property. |
| description | String | The information about the column’s meaning or usage. This value is assigned to the Description property. |
| type | Type | The column data type. This value is assigned to the Type property. |
| children | IEnumerable<PromptToExpressionRequestBase.ColumnInfo> | Detail-level columns associated with the column in a master–detail relationship. This value is assigned to the Children property. |
See Also