Class SpreadsheetScrollSettings
Specifies the class for scroll settings which includes height, width, allowScrolling, allowVirtualScrollinga and isResponsive properties.
Inherited Members
Namespace: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class SpreadsheetScrollSettings : EJTagHelper
Constructors
SpreadsheetScrollSettings()
Declaration
public SpreadsheetScrollSettings()
Properties
AllowScrolling
Gets or sets a value indicating whether the scrolling is enable or not.
Declaration
[JsonProperty("allowScrolling")]
public bool AllowScrolling { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the scrolling is enabled; otherwise, false. |
AllowSheetOnDemand
Gets or sets a value indicating whether the sheet on demand is enable or not.
Declaration
[JsonProperty("allowSheetOnDemand")]
public bool AllowSheetOnDemand { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the sheet on demand is enabled; otherwise, false. |
AllowVirtualScrolling
Gets or sets a value indicating whether the virtualscrolling is enable or not.
Declaration
[JsonProperty("allowVirtualScrolling")]
public bool AllowVirtualScrolling { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the virtual scrolling is enabled; otherwise, false. |
Height
Gets or sets the height of Spreadsheet.
Declaration
[JsonProperty("height")]
public object Height { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The Spreadsheet height. |
IsResponsive
Gets or sets a value indicating whether this property is enable or not.
Declaration
[JsonProperty("isResponsive")]
public bool IsResponsive { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the responsive is enabled for Spreadsheet; otherwise, false. |
ScrollMode
Gets or sets the scollmode.
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("scrollMode")]
public SpreadsheetScrollMode ScrollMode { get; set; }
Property Value
Type | Description |
---|---|
SpreadsheetScrollMode | The scrollMode Enum. |
Width
Gets or sets the width of Spreadsheet.
Declaration
[JsonProperty("width")]
public object Width { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The Spreadsheet width. |