com.crystaldecisions.sdk.occa.report.exportoptions
Interface ITextExportFormatOptions

All Known Implementing Classes:
TextExportFormatOptions

public interface ITextExportFormatOptions

This object is used to set the format options for a report that is to be exported as Text. When possible, use the ITextExportFormatOptions interface for manipulating this object.


Method Summary
 int getCharactersPerInch()
           Gets the number of characters per inch.
 int getLinesPerPage()
           Gets the number of lines per page.
 void setCharactersPerInch(int CharactersPerInch)
           Sets the number of characters per inch.
 void setLinesPerPage(int LinesPerPage)
           Sets the number of lines per page.
 

Method Detail

setLinesPerPage

void setLinesPerPage(int LinesPerPage)

Sets the number of lines per page.

Parameters:
LinesPerPage - An int that specifies the number of lines per page.

getLinesPerPage

int getLinesPerPage()

Gets the number of lines per page.

Returns:
An int that specifies the number of lines per page.

setCharactersPerInch

void setCharactersPerInch(int CharactersPerInch)

Sets the number of characters per inch.

Parameters:
CharactersPerInch - An int that specifies the number of characters per inch.

getCharactersPerInch

int getCharactersPerInch()

Gets the number of characters per inch.

Returns:
An int that specifies the number of characters per inch.