Class ThresholdLimit
Gets or sets information regarding the threshold limit for opening a file. Either the total file size or the maximum amount of data that a workbook can hold is used to determine the limit.
Inheritance
System.Object
ThresholdLimit
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.EJ2.Spreadsheet
Assembly: Syncfusion.EJ2.Spreadsheet.dll
Syntax
public class ThresholdLimit
Constructors
ThresholdLimit()
Declaration
public ThresholdLimit()
Properties
MaximumDataLimit
Gets or sets the maximum number of cells (rows multiplied by columns). The imported file will be opened if the data is within the limit; otherwise, the user will be given the choice of continuing the file opening process or canceling the request.
Declaration
public long MaximumDataLimit { get; set; }
Property Value
Type |
---|
System.Int64 |
MaximumFileSize
Gets or sets the maximum file size in bytes. The imported file will be opened if the file size is within the limit; otherwise, the user will be given the choice of continuing the file opening process or canceling the request.
Declaration
public long MaximumFileSize { get; set; }
Property Value
Type |
---|
System.Int64 |