Class GridLoadOptions

GridLoadOptions class

Represents the options of loading the file. [Obsolete(“This class will be obsoleted after stand alone dll usage of cells public api,instead you can use Aspose.Cells.LodOptions “)]

public class GridLoadOptions

Constructors

NameDescription
GridLoadOptions()Creates an options of loading the file.

Properties

NameDescription
AutoFilter { get; set; }Indicates whether auto filtering the data when loading the files.
CheckDataValid { get; set; }Check whether data is valid in the template file.
CheckExcelRestriction { get; set; }Whether check restriction of excel file when user modify cells related objects. For example, excel does not allow inputting string value longer than 32K. When you input a value longer than 32K such as by Cell.PutValue(string), if this property is true, you will get an Exception. If this property is false, we will accept your input string value as the cell’s value so that later you can output the complete string value for other file formats such as CSV. However, if you have set such kind of value that is invalid for excel file format, you should not save the workbook as excel file format later. Otherwise there may be unexpected error for the generated excel file.
IgnoreNotPrinted { get; set; }Ignore the data which are not printed if directly printing the file
KeepUnparsedData { get; set; }Whether keep the unparsed data in memory for the Workbook when it is loaded from template file. Default is true.
ParsingFormulaOnOpen { get; set; }Indicates whether parsing the formula when reading the file.
ParsingPivotCachedRecords { get; set; }Indicates whether parsing pivot cached records when loading the file. The default value is false.
Password { get; set; }Gets and set the password of the workbook.

See Also