Class RangeSetting
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: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class RangeSetting : EJTagHelper
Constructors
RangeSetting()
Declaration
public RangeSetting()
Properties
DataManagerID
Gets or sets the dataManagerID for Spreadsheet.
Declaration
[JsonProperty("dataSource")]
[HtmlAttributeName("datasource")]
[JsonConverter(typeof(DataManagerConverter), "ID")]
public string DataManagerID { get; set; }
Property Value
Type | Description |
---|---|
System.String | The datamanager ID. |
Datasource
Gets or sets the datasource for Spreadsheet.
Declaration
[JsonProperty("dataSource")]
[JsonConverter(typeof(DataManagerConverter))]
public object Datasource { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The datasource object. |
HeaderStyles
Gets or sets the header styles for Spreadsheet.
Declaration
[JsonProperty("headerStyles")]
public SpreadsheetCellStyles HeaderStyles { get; set; }
Property Value
Type | Description |
---|---|
SpreadsheetCellStyles | The header style. |
PrimaryKey
Gets or sets the primary key for Spreadsheet.
Declaration
[JsonProperty("primaryKey")]
public string PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
System.String | The primary key. |
Query
Gets or sets the datasource query for Spreadsheet.
Declaration
[JsonProperty("query")]
[JsonConverter(typeof(QueryConverter))]
public string Query { get; set; }
Property Value
Type | Description |
---|---|
System.String | The datasource query. |
ShowHeader
Gets or sets a value indicating whether the header for datasource is enable or not.
Declaration
[JsonProperty("showHeader")]
public bool ShowHeader { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the header for data source is enabled; otherwise, false. |
StartCell
Gets or sets the start cell of datasource.
Declaration
[JsonProperty("startCell")]
public string StartCell { get; set; }
Property Value
Type | Description |
---|---|
System.String | The start cell. |