Class RVSchemaColumn
The class representing a column in the in-memory result, specifies name, label and data type of the column.
Inheritance
System.Object
RVSchemaColumn
Namespace: Reveal.Sdk
Assembly: Infragistics.Reveal.SDK.Server.dll
Syntax
public class RVSchemaColumn : Object
Constructors
RVSchemaColumn(String, String, RVSchemaColumnType)
Creates a new schema column with the given name, label and data type
Declaration
public RVSchemaColumn(string name, string label, RVSchemaColumnType type)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the column |
System.String | label | The label of the column as will be displayed in Reveal. If missing - the name of the column will be displayed |
RVSchemaColumnType | type | The data type of the column |
Properties
Label
The label of the column
Declaration
public string Label { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
The name of the column
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Type
The data type of the column
Declaration
public RVSchemaColumnType Type { get; set; }
Property Value
Type | Description |
---|---|
RVSchemaColumnType |