Class SpreadsheetExportSettings
Represents a class for Spreadsheet export settings which includes excel url, pdf url, csv url and password properties.
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 SpreadsheetExportSettings : EJTagHelper
Constructors
SpreadsheetExportSettings()
Declaration
public SpreadsheetExportSettings()
Properties
AllowExporting
Gets or sets a value indicating whether the exporting is enable or not.
Declaration
[JsonProperty("allowExporting")]
public bool AllowExporting { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the exporting is enabled; otherwise, false. |
CsvUrl
Gets or sets the csv url.
Declaration
[JsonProperty("csvUrl")]
public string CsvUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String | The csv url string. |
EnableFormulaCalculation
Gets or sets a value indicating whether the enableFormulaCalculation is enable or not.
Declaration
[JsonProperty("enableFormulaCalculation")]
public bool EnableFormulaCalculation { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the enableFormulaCalculation is enabled; otherwise, false. |
ExcelUrl
Gets or sets the excel url.
Declaration
[JsonProperty("excelUrl")]
public string ExcelUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String | The excel url string. |
Password
Gets or sets the password.
Declaration
[JsonProperty("password")]
public string Password { get; set; }
Property Value
Type | Description |
---|---|
System.String | The password string. |
PdfUrl
Gets or sets the pdf url.
Declaration
[JsonProperty("pdfUrl")]
public string PdfUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String | The pdf url string. |