Method WithDisplayShortName
| Improve this Doc View SourceWithDisplayShortName<T>(T, String)
Specifies display short name for column.
Declaration
public static T WithDisplayShortName<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. |
WithDisplayShortName<T>(T, Func<String>)
Specifies display short name for column.
Declaration
public static T WithDisplayShortName<T>(this T column, Func<string> displayShortNameGetter)
where T : Column, new()
Parameters
Type | Name | Description |
---|---|---|
T | column | The column. |
System.Func<System.String> | displayShortNameGetter | Delegate to return display short name. |
Returns
Type | Description |
---|---|
T | This column for fluent coding. |
Type Parameters
Name | Description |
---|---|
T | Type of the column. |