Aspose::Cells::ITxtLoadOptions Class Referenceabstract

Represents the options for loading text file. More...

Inherits IAbstractTextLoadOptions.

Public Member Functions

virtual Aspose::Cells::Systems::Char GetSeparator ()=0
 Gets character separator of text file. More...
 
virtual void SetSeparator (Aspose::Cells::Systems::Char value)=0
 Sets character separator of text file. More...
 
virtual intrusive_ptr< Aspose::Cells::Systems::String > GetSeparatorString ()=0
 Gets the a string value as separator. More...
 
virtual void SetSeparatorString (intrusive_ptr< Aspose::Cells::Systems::String > value)=0
 Sets the a string value as separator. More...
 
virtual bool IsMultiEncoded ()=0
 True means that the file contains several encoding. More...
 
virtual void SetMultiEncoded (bool value)=0
 True means that the file contains several encoding. More...
 
virtual bool HasFormula ()=0
 Indicates whether the text is formula if it starts with "=". More...
 
virtual void SetHasFormula (bool value)=0
 Indicates whether the text is formula if it starts with "=". More...
 
virtual bool HasTextQualifier ()=0
 Whether there is text qualifier for cell value. Default is true. More...
 
virtual void SetHasTextQualifier (bool value)=0
 Whether there is text qualifier for cell value. Default is true. More...
 
virtual Aspose::Cells::Systems::Char GetTextQualifier ()=0
 Specifies the text qualifier for cell values. Default qualifier is '"'. More...
 
virtual void SetTextQualifier (Aspose::Cells::Systems::Char value)=0
 Specifies the text qualifier for cell values. Default qualifier is '"'. More...
 
virtual bool GetTreatConsecutiveDelimitersAsOne ()=0
 Whether consecutive delimiters should be treated as one. More...
 
virtual void SetTreatConsecutiveDelimitersAsOne (bool value)=0
 Whether consecutive delimiters should be treated as one. More...
 
virtual bool GetTreatQuotePrefixAsValue ()=0
 Indicates whether the leading single quote sign should be taken as part of the value of one cell. Default is true. If it is false, the leading single quote will be removed from corresponding cell's value and Style.QuotePrefix will be set as true for the cell. More...
 
virtual void SetTreatQuotePrefixAsValue (bool value)=0
 Indicates whether the leading single quote sign should be taken as part of the value of one cell. Default is true. If it is false, the leading single quote will be removed from corresponding cell's value and Style.QuotePrefix will be set as true for the cell. More...
 
virtual bool GetExtendToNextSheet ()=0
 Whether extends data to next sheet when the rows or columns of data exceed limit. If this property is true, extra data will be extended to next sheet behind current one(if current sheet is the last one, new sheet will be appended to current workbook). If this property is false, the data exceeds limit will be ignored. Default is false; More...
 
virtual void SetExtendToNextSheet (bool value)=0
 Whether extends data to next sheet when the rows or columns of data exceed limit. If this property is true, extra data will be extended to next sheet behind current one(if current sheet is the last one, new sheet will be appended to current workbook). If this property is false, the data exceeds limit will be ignored. Default is false; More...
 

Detailed Description

Represents the options for loading text file.

Member Function Documentation

◆ GetExtendToNextSheet()

virtual bool Aspose::Cells::ITxtLoadOptions::GetExtendToNextSheet ( )
pure virtual

Whether extends data to next sheet when the rows or columns of data exceed limit. If this property is true, extra data will be extended to next sheet behind current one(if current sheet is the last one, new sheet will be appended to current workbook). If this property is false, the data exceeds limit will be ignored. Default is false;

◆ GetSeparator()

virtual Aspose::Cells::Systems::Char Aspose::Cells::ITxtLoadOptions::GetSeparator ( )
pure virtual

Gets character separator of text file.

◆ GetSeparatorString()

virtual intrusive_ptr<Aspose::Cells::Systems::String> Aspose::Cells::ITxtLoadOptions::GetSeparatorString ( )
pure virtual

Gets the a string value as separator.

◆ GetTextQualifier()

virtual Aspose::Cells::Systems::Char Aspose::Cells::ITxtLoadOptions::GetTextQualifier ( )
pure virtual

Specifies the text qualifier for cell values. Default qualifier is '"'.

◆ GetTreatConsecutiveDelimitersAsOne()

virtual bool Aspose::Cells::ITxtLoadOptions::GetTreatConsecutiveDelimitersAsOne ( )
pure virtual

Whether consecutive delimiters should be treated as one.

◆ GetTreatQuotePrefixAsValue()

virtual bool Aspose::Cells::ITxtLoadOptions::GetTreatQuotePrefixAsValue ( )
pure virtual

Indicates whether the leading single quote sign should be taken as part of the value of one cell. Default is true. If it is false, the leading single quote will be removed from corresponding cell's value and Style.QuotePrefix will be set as true for the cell.

◆ HasFormula()

virtual bool Aspose::Cells::ITxtLoadOptions::HasFormula ( )
pure virtual

Indicates whether the text is formula if it starts with "=".

◆ HasTextQualifier()

virtual bool Aspose::Cells::ITxtLoadOptions::HasTextQualifier ( )
pure virtual

Whether there is text qualifier for cell value. Default is true.

◆ IsMultiEncoded()

virtual bool Aspose::Cells::ITxtLoadOptions::IsMultiEncoded ( )
pure virtual

True means that the file contains several encoding.

◆ SetExtendToNextSheet()

virtual void Aspose::Cells::ITxtLoadOptions::SetExtendToNextSheet ( bool  value)
pure virtual

Whether extends data to next sheet when the rows or columns of data exceed limit. If this property is true, extra data will be extended to next sheet behind current one(if current sheet is the last one, new sheet will be appended to current workbook). If this property is false, the data exceeds limit will be ignored. Default is false;

◆ SetHasFormula()

virtual void Aspose::Cells::ITxtLoadOptions::SetHasFormula ( bool  value)
pure virtual

Indicates whether the text is formula if it starts with "=".

◆ SetHasTextQualifier()

virtual void Aspose::Cells::ITxtLoadOptions::SetHasTextQualifier ( bool  value)
pure virtual

Whether there is text qualifier for cell value. Default is true.

◆ SetMultiEncoded()

virtual void Aspose::Cells::ITxtLoadOptions::SetMultiEncoded ( bool  value)
pure virtual

True means that the file contains several encoding.

◆ SetSeparator()

virtual void Aspose::Cells::ITxtLoadOptions::SetSeparator ( Aspose::Cells::Systems::Char  value)
pure virtual

Sets character separator of text file.

◆ SetSeparatorString()

virtual void Aspose::Cells::ITxtLoadOptions::SetSeparatorString ( intrusive_ptr< Aspose::Cells::Systems::String >  value)
pure virtual

Sets the a string value as separator.

◆ SetTextQualifier()

virtual void Aspose::Cells::ITxtLoadOptions::SetTextQualifier ( Aspose::Cells::Systems::Char  value)
pure virtual

Specifies the text qualifier for cell values. Default qualifier is '"'.

◆ SetTreatConsecutiveDelimitersAsOne()

virtual void Aspose::Cells::ITxtLoadOptions::SetTreatConsecutiveDelimitersAsOne ( bool  value)
pure virtual

Whether consecutive delimiters should be treated as one.

◆ SetTreatQuotePrefixAsValue()

virtual void Aspose::Cells::ITxtLoadOptions::SetTreatQuotePrefixAsValue ( bool  value)
pure virtual

Indicates whether the leading single quote sign should be taken as part of the value of one cell. Default is true. If it is false, the leading single quote will be removed from corresponding cell's value and Style.QuotePrefix will be set as true for the cell.