IXlsWorksheetExportOptions
COM interface ( getting help with interfaces )

 

interface IXlsWorksheetExportOptions : IDispatch
{
  [id(1), propput] HRESULT UrlPrefix([in]BSTR urlPrefix);
  [id(2), propput] HRESULT CSVSeparator([in]short separator);
  [id(3), propput] HRESULT NumberFormatting([in]BOOL bFormatting);
  [id(4), propput] HRESULT UnicodeEncoding([in]BOOL bUnicodeEncoding);
  [id(5), propput] HRESULT FontEmbedding([in]BOOL bFontEmbedding);

}

 

HRESULT UrlPrefix([in]BSTR urlPrefix);
sets the url prefix used for exporting resources (such as images) in the Html export.

HRESULT CSVSeparator([in]short separator);
sets the CSV export to use the passed CSV field separator. Default is the semi-colon character.

HRESULT NumberFormatting([in]BOOL bFormatting);
sets the CSV export to use or not use number formatting. Default is : no (number formatting are exported with all their decimals and the '.' as decimal separator).

HRESULT UnicodeEncoding([in]BOOL bUnicodeEncoding);
sets the export to use Unicode encoding or not. Default is : no.

HRESULT FontEmbedding([in]BOOL bFontEmbedding);
sets the export to embed fonts in the PDF export. Default is : yes.