Class SpreadsheetSelectionSettings
Specifies the class for selection settings which includes selection type, unit, enableAnimation, animation time and animation type 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 SpreadsheetSelectionSettings : EJTagHelper
Constructors
SpreadsheetSelectionSettings()
Declaration
public SpreadsheetSelectionSettings()
Properties
ActiveCell
Gets or sets the active cell.
Declaration
[JsonProperty("activeCell")]
public string ActiveCell { get; set; }
Property Value
Type | Description |
---|---|
System.String | The active cell. |
AnimationTime
Gets or sets the animation time.
Declaration
[JsonProperty("animationTime")]
public double AnimationTime { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The animation time. |
AnimationType
Gets or sets the type of animation.
Declaration
[JsonProperty("animationType")]
public string AnimationType { get; set; }
Property Value
Type | Description |
---|---|
System.String | The animation type. |
EnableAnimation
Gets or sets a value indicating whether the animation is enabled or not.
Declaration
[JsonProperty("enableAnimation")]
public bool EnableAnimation { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the animation for selection is enabled; otherwise, false. |
SelectionType
Gets or sets the type of selection.
Declaration
[JsonProperty("selectionType")]
[JsonConverter(typeof(StringEnumConverter))]
public SpreadsheetSelectionType SelectionType { get; set; }
Property Value
Type | Description |
---|---|
SpreadsheetSelectionType | The Selection type. |
SelectionUnit
Gets or sets the selection unit.
Declaration
[JsonProperty("selectionUnit")]
[JsonConverter(typeof(StringEnumConverter))]
public SpreadsheetSelectionUnit SelectionUnit { get; set; }
Property Value
Type | Description |
---|---|
SpreadsheetSelectionUnit | The Selection unit. |