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
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: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public class RVSchemaColumn
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 |