Method WithDisplayDescription
| Improve this Doc View SourceWithDisplayDescription<T>(T, String)
Specifies display description for column.
Declaration
public static T WithDisplayDescription<T>(this T column, string value)
where T : Column, new()
Parameters
| Type | Name | Description |
|---|---|---|
| T | column | The column. |
| System.String | value | The value. |
Returns
| Type | Description |
|---|---|
| T | This column for fluent coding. |
Type Parameters
| Name | Description |
|---|---|
| T | Type of the column. |
WithDisplayDescription<T>(T, Func<String>)
Specifies display description for column.
Declaration
public static T WithDisplayDescription<T>(this T column, Func<string> displayDescriptionGetter)
where T : Column, new()
Parameters
| Type | Name | Description |
|---|---|---|
| T | column | The column. |
| System.Func<System.String> | displayDescriptionGetter | Delegate to get the display description. |
Returns
| Type | Description |
|---|---|
| T | This column for fluent coding. |
Type Parameters
| Name | Description |
|---|---|
| T | Type of the column. |