com.crystaldecisions.sdk.plugin.desktop.common
Interface ITextFormatCharacterSeparated

All Superinterfaces:
ITextFormatSeparated

public interface ITextFormatCharacterSeparated
extends ITextFormatSeparated

This interface allows you to set the options when exporting a report to a text file with character separated values.


Nested Class Summary
 
Nested classes/interfaces inherited from interface com.crystaldecisions.sdk.plugin.desktop.common.ITextFormatSeparated
ITextFormatSeparated.CeExportMode, ITextFormatSeparated.CeGroupSectionsOption, ITextFormatSeparated.CeReportSectionsOption
 
Method Summary
 java.lang.String getQuote()
           Gets the quote character to use.
 boolean isSameDateFormat()
           Gets whether to use the same date formats as the report.
 boolean isSameNumberFormat()
           Gets whether to use the same number formats as the report.
 void setQuote(java.lang.String Quote)
           Sets the quote character to use.
 void setSameDateFormat(boolean SameDate)
           Sets whether to use the same date formats as the report.
 void setSameNumberFormat(boolean SameNumber)
           Sets whether to use the same number formats as the report.
 
Methods inherited from interface com.crystaldecisions.sdk.plugin.desktop.common.ITextFormatSeparated
getDelimiter, getExportMode, getGroupSectionsOption, getReportSectionsOption, getSeparator, setDelimiter, setExportMode, setGroupSectionsOption, setReportSectionsOption, setSeparator
 

Method Detail

getQuote

java.lang.String getQuote()
                          throws SDKException

Gets the quote character to use.

Returns:
A String containing the character to use.
Throws:
SDKException - This is thrown if the process is unsuccessful.

setQuote

void setQuote(java.lang.String Quote)

Sets the quote character to use.

Parameters:
Quote - A String containing the character to use.

isSameNumberFormat

boolean isSameNumberFormat()
                           throws SDKException

Gets whether to use the same number formats as the report.

Returns:
true if the same number formats as the report will be used.
Throws:
SDKException - This is thrown if the process is unsuccessful.

setSameNumberFormat

void setSameNumberFormat(boolean SameNumber)

Sets whether to use the same number formats as the report.

Parameters:
SameNumber - true if the same number formats as the report will be used. as the report.

isSameDateFormat

boolean isSameDateFormat()
                         throws SDKException

Gets whether to use the same date formats as the report.

Returns:
true if the same date formats as the report will be used.
Throws:
SDKException - This is thrown if the process is unsuccessful.

setSameDateFormat

void setSameDateFormat(boolean SameDate)

Sets whether to use the same date formats as the report.

Parameters:
SameDate - true if the same date formats as the report will be used.