Class GridColumn
Represents a Tubular Grid column.
This object is only used to be serialized/deserialized between the backend and Tubular Grid.
Inheritance
System.Object
GridColumn
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Unosquare.Tubular
Syntax
public class GridColumn
Properties
Aggregate
The Aggregation Function.
Declaration
public AggregationFunction Aggregate { get; set; }
Property Value
Type | Description |
---|---|
AggregationFunction |
DataType
Column data type.
Declaration
public DataType DataType { get; set; }
Property Value
Type | Description |
---|---|
DataType |
Filter
Represents the Columns filter.
Declaration
public Filter Filter { get; set; }
Property Value
Type | Description |
---|---|
Filter |
FilterArgument
Filter search params.
Declaration
public string[] FilterArgument { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
FilterOperator
Filter operator.
Declaration
public CompareOperators FilterOperator { get; set; }
Property Value
Type | Description |
---|---|
CompareOperators |
FilterText
Filter search text.
Declaration
public string FilterText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Label
Column Label.
Declaration
public string Label { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Column Name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Searchable
Set if the column is searchable in free-text search.
Declaration
public bool Searchable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Sortable
Set if column is sortable.
Declaration
public bool Sortable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
SortDirection
Set the sort direction.
Declaration
public SortDirection SortDirection { get; set; }
Property Value
Type | Description |
---|---|
SortDirection |
SortOrder
Set the sort order, zero or less are ignored.
Declaration
public int SortOrder { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |