Sottosezioni di Sheetize Namespace
Class EbookConverter
Informazione
Convertitore per la conversione tra ebook e altri formati di file foglio di calcolo.
public class EbookConverter
Ereditarietà
object ←
EbookConverter
Membri Ereditati
Esempi
1EbookConverter converter = new EbookConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "MyStory.xlsx";
4EbookSaveOptions saveOptions = new EbookSaveOptions();
5saveOptions.OutputFile = "res.epub";
6converter.Process(loadOptions, saveOptions);
Costruttori
EbookConverter()
Metodi
Process(LoadOptions, EbookSaveOptions)
Converte tra ebook e altri formati di file foglio di calcolo.
public void Process(LoadOptions loadOptions, EbookSaveOptions saveOptions)
Parametri
Class EbookSaveOptions
Informazione
Opzioni per salvare .EPUB, .AZW3.
public class EbookSaveOptions : SaveOptions
Ereditarietà
object ←
SaveOptions ←
EbookSaveOptions
Membri Ereditati
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
EbookSaveOptions()
public EbookSaveOptions()
Proprietà
Ottiene e imposta il formato del foglio di calcolo.
public FileFormatType SaveFormat { get; set; }
Valore della Proprietà
FileFormatType
Class HtmlConverter
Informazione
Convertitore per la conversione tra file html (html, mht, …) e altri formati di file per fogli di calcolo.
public class HtmlConverter
Ereditarietà
object ←
HtmlConverter
Membri Ereditati
Esempi
1
2
3HtmlConverter converter = new HtmlConverter();
4LoadOptions loadOptions = new LoadOptions();
5loadOptions.InputFile = "Template.xlsx";
6HtmlSaveOptions saveOptions = new HtmlSaveOptions();
7saveOptions.OutputFile = "res.html";
8converter.Process(loadOptions, saveOptions);
Costruttori
HtmlConverter()
Metodi
Process(LoadOptions, HtmlSaveOptions)
Converte file tra html e altri formati di file per fogli di calcolo.
public void Process(LoadOptions loadOptions, HtmlSaveOptions saveOptions)
Parametri
Class HtmlSaveOptions
Informazione
Opzioni per il salvataggio in html.
public class HtmlSaveOptions : SaveOptions
Ereditarietà
object ←
SaveOptions ←
HtmlSaveOptions
Membri Eredità
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
HtmlSaveOptions()
Proprietà
Ottiene e imposta il formato del foglio di calcolo.
public FileFormatType SaveFormat { get; set; }
Valore Proprietà
FileFormatType
Class ImageConverter
Informazione
Converter per convertire il file di modello in pdf.
public class ImageConverter
Inheritance
object ←
ImageConverter
Inherited Members
Examples
1private class MyImageSaveOptions : ImageSaveOptions
2{
3 private const string ResultBase = "result/images/";
4 public override Stream GetStream(int pageIndex)
5 {
6 return File.Create(ResultBase + "res_" + pageIndex + ".png");
7 }
8}
9ImageConverter converter = new ImageConverter();
10LoadOptions loadOptions = new LoadOptions();
11loadOptions.InputFile = "Template.xlsx";
12ImageSaveOptions saveOptions = new MyImageSaveOptions();
13converter.Process(loadOptions, saveOptions);
Constructors
ImageConverter()
Methods
Process(LoadOptions, ImageSaveOptions)
Converte il file di modello in immagini
public void Process(LoadOptions loadOptions, ImageSaveOptions saveOptions)
Parameters
Class ImageSaveOptions
Informazione
Opzioni per il salvataggio delle immagini.
public class ImageSaveOptions : SaveOptions
Ereditarietà
object ←
SaveOptions ←
ImageSaveOptions
Membri ereditati
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
ImageSaveOptions()
public ImageSaveOptions()
Proprietà
HorizontalResolution
Ottiene o imposta la risoluzione orizzontale per le immagini generate, in punti per pollice.
public int HorizontalResolution { get; set; }
Valore della proprietà
int
Note
Il valore predefinito è 96.
Impostare Sheetize.ImageSaveOptions.HorizontalResolution e Sheetize.ImageSaveOptions.VerticalResolution
influisce sulla larghezza e sull'altezza dell'immagine di output in pixel.
ImageType
Ottiene o imposta il formato delle immagini generate.
Il valore predefinito è Sheetize.ImageType.Png.
public ImageType ImageType { get; set; }
Valore della proprietà
ImageType
OnePagePerSheet
Se OnePagePerSheet è vero, tutto il contenuto di un foglio verrà esportato su una sola pagina nel risultato.
Le dimensioni della carta definite da PageSetup verranno ignorate, ma altre impostazioni di PageSetup avranno comunque effetto.
public bool OnePagePerSheet { get; set; }
Valore della proprietà
bool
VerticalResolution
Ottiene o imposta la risoluzione verticale per le immagini generate, in punti per pollice.
public int VerticalResolution { get; set; }
Valore della proprietà
int
Note
Il valore predefinito è 96.
Impostare Sheetize.ImageSaveOptions.HorizontalResolution e Sheetize.ImageSaveOptions.VerticalResolution
influisce sulla larghezza e sull'altezza dell'immagine di output in pixel.
Metodi
Finish(Stream)
Termina la scrittura dei dati nello stream.
Per impostazione predefinita, questo metodo chiude semplicemente lo stream direttamente (inclusa la situazione in cui
lo stream è quello specificato da Sheetize.SaveOptions.OutputStream).
L’utente può sovrascrivere questo metodo per controllare come rilasciare le risorse,
secondo le proprie esigenze e l’implementazione di Sheetize.ImageSaveOptions.GetStream(System.Int32).
public virtual void Finish(Stream stream)
Parametri
stream
Stream: lo stream che ha completato il proprio compito (salvataggio dei dati in)
GetStream(int)
Ottiene lo stream per salvare l’immagine.
public virtual Stream GetStream(int pageIndex)
Parametri
pageIndex
int: la pagina da rendere come immagine
Restituisce
Stream : Stream per scrivere l’immagine generata.
Note
Per impostazione predefinita, se Sheetize.SaveOptions.OutputStream è stato specificato e ha effetto,
allora questo metodo restituisce sempre lo Stream specificato. L’utente dovrebbe sovrascrivere questo metodo nella propria implementazione
di questa classe per fornire oggetti Stream diversi e appropriati per l’output di più pagine.
Se Sheetize.SaveOptions.OutputFile è stato specificato e ha effetto,
se c’è solo una pagina di immagine, allora il percorso specificato (file) verrà utilizzato direttamente come output;
altrimenti, l’indice della pagina verrà aggiunto al nome del file e quindi verrà restituito lo FileStream costruito dal file.
Ad esempio, se il percorso di output è specificato come res.png, allora le immagini generate saranno res0.png, res1.png, …
Class JsonConverter
Informazione
Convertitore per la conversione tra dati json e altri formati di file per fogli di calcolo.
public class JsonConverter
Inheritance
object ←
JsonConverter
Inherited Members
Examples
1
2
3JsonConverter converter = new JsonConverter();
4LoadOptions loadOptions = new LoadOptions();
5loadOptions.InputFile = "data.json";
6JsonSaveOptions saveOptions = new JsonSaveOptions();
7saveOptions.OutputFile = "res.xlsx";
8converter.Process(loadOptions, saveOptions);
Constructors
JsonConverter()
Methods
Process(LoadOptions, JsonSaveOptions)
Converte tra dati json e altri formati di file per fogli di calcolo.
public void Process(LoadOptions loadOptions, JsonSaveOptions saveOptions)
Parameters
Class JsonSaveOptions
Informazione
Opzioni per il salvataggio del json.
public class JsonSaveOptions : SaveOptions
Ereditarietà
object ←
SaveOptions ←
JsonSaveOptions
Membri ereditati
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
JsonSaveOptions()
Proprietà
Ottiene e imposta il formato del foglio di calcolo.
public FileFormatType SaveFormat { get; set; }
Valore della proprietà
FileFormatType
Class License
Ereditarietà
object ←
License
Membri Ereditati
Esempi
1Sheetize.License license = new Sheetize.License();
2license.SetLicense("mylic.lic");
Costruttori
License()
Metodi
SetLicense(Stream)
Licenzia il prodotto tramite il Stream che fornisce i dati di licenza.
public void SetLicense(Stream stream)
Parametri
SetLicense(string)
Licenzia il prodotto tramite il file di licenza.
public void SetLicense(string licenseName)
Parametri
Class LoadOptions
Informazione
Opzioni per caricare il file di template.
Ereditarietà
object ←
LoadOptions
Derivato
Membri Ereditati
Costruttori
LoadOptions()
Proprietà
Ottiene e imposta il file (con il percorso se necessario) del template.
public string InputFile { get; set; }
Valore della Proprietà
string
Osservazioni
Quando si imposta un percorso non nullo e non vuoto a questa proprietà,
il valore precedentemente impostato per Sheetize.LoadOptions.InputStream sarà ignorato.
Ottiene e imposta il flusso del template.
public Stream InputStream { get; set; }
Valore della Proprietà
Stream
Osservazioni
Quando si imposta uno Stream non nullo a questa proprietà,
il valore precedentemente impostato per Sheetize.LoadOptions.InputFile sarà ignorato.
Class MergerLoadOptions
Informazione
Opzioni per unire più file.
public class MergerLoadOptions : LoadOptions
Ereditarietà
object ←
LoadOptions ←
MergerLoadOptions
Membri Ereditati
- LoadOptions.InputFile,
- LoadOptions.InputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
MergerLoadOptions()
public MergerLoadOptions()
Proprietà
Ottiene/imposta gli stream di input da cui caricare dati e unire.
public IEnumerator InputStreamEnumerator { get; set; }
Valore della Proprietà
IEnumerator
Metodi
Finish(Stream)
Termina il caricamento dei dati dallo stream (ottenuto da Sheetize.MergerLoadOptions.InputStreamEnumerator).
Per impostazione predefinita, questo metodo chiude direttamente lo stream
L’utente può sovrascrivere questo metodo per controllare come rilasciare le risorse
secondo le proprie necessità e l’implementazione di Sheetize.MergerLoadOptions.InputStreamEnumerator.
public virtual void Finish(Stream stream)
Parametri
stream
Stream: lo stream che ha completato il proprio compito (salvare i dati a)
Class PdfConverter
Informazione
Convertitore per convertire file di modelli in pdf.
public class PdfConverter
Eredità
object ←
PdfConverter
Membri ereditati
Esempi
1PdfConverter converter = new PdfConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "Template.xlsx";
4PdfSaveOptions saveOptions = new PdfSaveOptions();
5saveOptions.OutputFile = "res.pdf";
6converter.Process(loadOptions, saveOptions);
Costruttori
PdfConverter()
Metodi
Process(LoadOptions, PdfSaveOptions)
Converte il file di modello in pdf
public void Process(LoadOptions loadOptions, PdfSaveOptions saveOptions)
Parametri
Class PdfSaveOptions
Informazione
Opzioni per il salvataggio in pdf.
public class PdfSaveOptions : SaveOptions
Ereditarietà
object ←
SaveOptions ←
PdfSaveOptions
Membri Ereditati
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
PdfSaveOptions()
Class SaveOptions
Informazione
Opzioni per il salvataggio del file.
Inheritance
object ←
SaveOptions
Derived
Inherited Members
Constructors
SaveOptions()
Properties
OutputFile
Gets and sets the file(with path if needed) for saving the generated data.
When setting this property with value other than null or empty string, Sheetize.SaveOptions.OutputStream will be ignored.
public string OutputFile { get; set; }
Property Value
string
OutputStream
Gets and sets the Stream for writing the generated data to.
When setting this property with value other than null, Sheetize.SaveOptions.OutputFile will be ignored.
public Stream OutputStream { get; set; }
Property Value
Stream
Class SheetizeException
Informazione
L’eccezione che viene sollevata quando si verifica un errore specificato di Aspose.Cells.
public class SheetizeException : ApplicationException, ISerializable, _Exception
Ereditarietà
object ←
Exception ←
ApplicationException ←
SheetizeException
Implementa
Membri Ereditati
- Exception.GetBaseException(),
- Exception.ToString(),
- Exception.GetObjectData(SerializationInfo, StreamingContext),
- Exception.GetType(),
- Exception.Message,
- Exception.Data,
- Exception.InnerException,
- Exception.TargetSite,
- Exception.StackTrace,
- Exception.HelpLink,
- Exception.Source,
- Exception.HResult,
- Exception.SerializeObjectState,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Proprietà
Codice
Rappresenta il codice dell’eccezione personalizzata.
public ExceptionType Code { get; }
Valore della Proprietà
ExceptionType
Class SplitterSaveOptions
Informazione
Opzioni per dividere il file di modello.
public class SplitterSaveOptions : SaveOptions
Ereditarietà
object ←
SaveOptions ←
SplitterSaveOptions
Membri Ereditati
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
SplitterSaveOptions()
public SplitterSaveOptions()
Proprietà
Ottiene e imposta il formato del foglio di calcolo.
public FileFormatType SaveFormat { get; set; }
Valore della Proprietà
FileFormatType
Metodi
Finish(Stream)
Completa la scrittura dei dati nello stream.
Per impostazione predefinita, questo metodo chiude direttamente lo stream (inclusa la situazione in cui
lo stream è quello specificato da Sheetize.SaveOptions.OutputStream).
L’utente può sovrascrivere questo metodo per controllare come rilasciare le risorse
secondo le proprie esigenze e l’implementazione di Sheetize.SplitterSaveOptions.GetStream(System.Int32).
public virtual void Finish(Stream stream)
Parametri
stream
Stream: lo stream che ha completato il suo task (salvataggio dei dati).
GetStream(int)
Ottiene lo stream per salvare la parte divisa.
public virtual Stream GetStream(int sn)
Parametri
sn
int: il numero di sequenza della parte divisa, indicizzato da 0.
Restituisce
Stream : Stream su cui scrivere la parte divisa.
Osservazioni
Per impostazione predefinita, se Sheetize.SaveOptions.OutputStream è stato specificato e ha effetto,
questo metodo restituisce sempre lo Stream specificato. L’utente dovrebbe sovrascrivere questo metodo nella propria implementazione
di questa classe per fornire oggetti Stream diversi e appropriati per l’output di più parti.
Se Sheetize.SaveOptions.OutputFile è stato specificato e ha effetto,
allora il numero di sequenza verrà aggiunto al nome del file e poi restituirà il FileStream costruito dal file.
Ad esempio, se il percorso di output è specificato come res.xlsx, allora i file generati saranno res0.xlsx, res1.xlsx,…
Class SpreadsheetConverter
Informazione
Convertitore per la conversione tra diversi formati di file di fogli di calcolo, come xls, xlsx, xlsb, ods, spreadsheet ml…
public class SpreadsheetConverter
Ereditarietà
object ←
SpreadsheetConverter
Membri ereditati
Esempi
1
2
3SpreadsheetConverter converter = new SpreadsheetConverter();
4LoadOptions loadOptions = new LoadOptions();
5loadOptions.InputFile = "Template.xlsx";
6SpreadsheetSaveOptions saveOptions = new SpreadsheetSaveOptions();
7saveOptions.OutputFile = "res.xlsb";
8converter.Process(loadOptions, saveOptions);
Costruttori
SpreadsheetConverter()
public SpreadsheetConverter()
Metodi
Process(LoadOptions, SpreadsheetSaveOptions)
Converte tra diversi formati di file di fogli di calcolo.
public void Process(LoadOptions loadOptions, SpreadsheetSaveOptions saveOptions)
Parametri
Class SpreadsheetMerger
Informazione
Unisce più file di template in uno.
public class SpreadsheetMerger
Ereditarietà
object ←
SpreadsheetMerger
Membri Ereditati
Esempi
1SpreadsheetMerger merger = new SpreadsheetMerger();
2MergerLoadOptions loadOptions = new MergerLoadOptions();
3ArrayList list = new ArrayList();
4list.Add(File.OpenRead("template1.xlsx"));
5list.Add(File.OpenRead("template2.ods"));
6loadOptions.InputStreamEnumerator = list.GetEnumerator();
7SpreadsheetSaveOptions saveOptions = new SpreadsheetSaveOptions();
8saveOptions.OutputFile = "res.xlsx";
9merger.Process(loadOptions, saveOptions);
Costruttori
SpreadsheetMerger()
public SpreadsheetMerger()
Metodi
Process(MergerLoadOptions, SpreadsheetSaveOptions)
public void Process(MergerLoadOptions loadOptions, SpreadsheetSaveOptions saveOptions)
Parametri
Class SpreadsheetSaveOptions
Informazione
Opzioni per il salvataggio del foglio di calcolo.
public class SpreadsheetSaveOptions : SaveOptions
Ereditarietà
object ←
SaveOptions ←
SpreadsheetSaveOptions
Membri Eredidati
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
SpreadsheetSaveOptions()
public SpreadsheetSaveOptions()
Proprietà
Ottiene e imposta il formato del foglio di calcolo.
public FileFormatType SaveFormat { get; set; }
Valore della Proprietà
FileFormatType
Class SpreadsheetSplitter
Informazione
Divide il file del foglio di calcolo in più parti.
public class SpreadsheetSplitter
Ereditarietà
object ←
SpreadsheetSplitter
Membri ereditati
Esempi
1private class MySplitterSaveOptions : SplitterSaveOptions
2{
3 private const string ResultBase = "result/splitter/";
4 public override Stream GetStream(int sn)
5 {
6 return File.Create(ResultBase + "part_" + sn + ".xlsx");
7 }
8}
9SpreadsheetSplitter splitter = new SpreadsheetSplitter();
10LoadOptions loadOptions = new LoadOptions();
11loadOptions.InputFile = "Template.xlsx";
12MySplitterSaveOptions saveOptions = new MySplitterSaveOptions();
13splitter.Process(loadOptions, saveOptions);
Costruttori
SpreadsheetSplitter()
public SpreadsheetSplitter()
Metodi
Process(LoadOptions, SplitterSaveOptions)
public void Process(LoadOptions loadOptions, SplitterSaveOptions saveOptions)
Parametri
Class SpreadsheetUnlocker
Informazione
Sblocca il file del foglio di calcolo.
public class SpreadsheetUnlocker
Ereditarietà
object ←
SpreadsheetUnlocker
Membri ereditati
Esempi
1SpreadsheetUnlocker processor = new SpreadsheetUnlocker();
2UnlockerLoadOptions loadOptions = new UnlockerLoadOptions();
3loadOptions.InputFile = "Template.xlsx";
4loadOptions.Password = "password per aprire il file";
5SpreadsheetSaveOptions saveOptions = new SpreadsheetSaveOptions();
6saveOptions.OutputFile = "res.xlsx";
7processor.Process(loadOptions, saveOptions);
Costruttori
SpreadsheetUnlocker()
public SpreadsheetUnlocker()
Metodi
Process(UnlockerLoadOptions, SpreadsheetSaveOptions)
public void Process(UnlockerLoadOptions loadOptions, SpreadsheetSaveOptions saveOptions)
Parametri
Class TextConverter
Informazione
Converter per la conversione tra formati di testo (csv, markdown, dif…) e altri formati di file di fogli di calcolo.
public class TextConverter
Ereditarietà
object ←
TextConverter
Membri Ereditati
Esempi
1TextConverter converter = new TextConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "Template.csv";
4TextSaveOptions saveOptions = new TextSaveOptions();
5saveOptions.OutputFile = "res.xlsx";
6converter.Process(loadOptions, saveOptions);
Costruttori
TextConverter()
Metodi
Process(LoadOptions, TextSaveOptions)
Converte il formato del file tra formati di testo e altri formati di file di fogli di calcolo
public void Process(LoadOptions loadOptions, TextSaveOptions saveOptions)
Parametri
Class TextSaveOptions
Informazione
Opzioni per il salvataggio di .SQL, .MD, .CSV, .TSV, .TXT, .XML, .DIF.
public class TextSaveOptions : SaveOptions
Ereditarietà
oggetto ←
SaveOptions ←
TextSaveOptions
Membri Ereditati
- SaveOptions.OutputFile,
- SaveOptions.OutputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
TextSaveOptions()
Proprietà
SaveFormat
Ottiene e imposta il formato del foglio di calcolo.
public FileFormatType SaveFormat { get; set; }
Valore della Proprietà
FileFormatType
Class UnlockerLoadOptions
Informazione
Opzioni per sbloccare i file excel.
public class UnlockerLoadOptions : LoadOptions
Ereditarietà
object ←
LoadOptions ←
UnlockerLoadOptions
Membri Ereditati
- LoadOptions.InputFile,
- LoadOptions.InputStream,
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Costruttori
UnlockerLoadOptions()
public UnlockerLoadOptions()
Proprietà
Password
Password per aprire il file.
public string Password { get; set; }
Valore della Proprietà
string
PasswordToModify
Password per modificare il file.
public string PasswordToModify { get; set; }
Valore della Proprietà
string
PasswordToUnprotectWorkbook
Password per rimuovere la protezione del workbook.
public string PasswordToUnprotectWorkbook { get; set; }
Valore della Proprietà
string
PasswordToUnprotectWorksheet
Password per rimuovere la protezione del foglio di lavoro.
public string PasswordToUnprotectWorksheet { get; set; }
Valore della Proprietà
string
Enum ExceptionType
Informazione
Rappresenta un codice di tipo di eccezione personalizzato.
public enum ExceptionType
Fields
DataType = 0
: Tipo di dato non valido.FileCorrupted = 13
: Il contenuto del file è corrotto.FileFormat = 1
: Formato di file non valido.IO = 8
: Il file non è valido.IncorrectPassword = 4
: Password errata.Interrupted = 7
: Il processo è stato interrotto.InvalidData = 2
: Dati non validi.InvalidOperator = 3
: Operatore non valido.License = 5
: Errori relativi alla licenza.Limitation = 6
: Errore di superamento delle limitazioni di MS Excel.Permission = 9
: È necessaria l’autorizzazione per aprire questo file.UndisclosedInformation = 12
: I file contengono alcune informazioni riservate.UnsupportedFeature = 10
: Funzione non supportata.UnsupportedStream = 11
: Stream non supportato da aprire.
Informazione
Rappresenta i formati di file supportati per la conversione.
public enum FileFormatType
Fields
Auto = 0
: Se si salva il file su disco, il formato del file corrisponde all’estensione del nome del file. Se si salva il file su stream, il formato del file è xlsx.Azw3 = 773
: Rappresenta un file Azw3.Bmp = 263
: Windows BitmapCsv = 1
: File di testo con valori separati da virgola (CSV).Dif = 30
: Formato di interscambio dati.Docx = 62
: Rappresenta un file .docx.Emf = 258
: Windows Enhanced Metafile.Epub = 772
: Rappresenta un file Epub.Excel97To2003 = 5
: Rappresenta un file Excel97-2003 xls.Fods = 59
: Rappresenta il formato di file OpenDocument Flat XML Spreadsheet (.fods).Gif = 322
: GifHtml = 12
: Rappresenta un file html.Jpg = 261
: JPEG JFIF.Json = 513
: JsonMHtml = 17
: Rappresenta un file mhtml.Markdown = 57
: Rappresenta un documento markdown.Numbers = 56
: Rappresenta un file numeri. Non supportato.Ods = 14
: File Open Document Sheet(ODS).Ots = 31
: File Open Document Template Sheet(OTS).Pdf = 13
: Rappresenta un file Pdf.Png = 262
: Portable Network Graphics.Pptx = 61
: Rappresenta un file .pptx.SpreadsheetML = 15
: Rappresenta un file xml di Excel 2003.SqlScript = 514
: SqlSvg = 28
: File SVG.Sxc = 60
: Rappresenta il formato di file StarOffice Calc Spreadsheet (.sxc).TabDelimited = 11
: Rappresenta un file di testo delimitato da tabulazioni, lo stesso di Sheetize.FileFormatType.Tsv.Tiff = 21
: Rappresenta un file TIFF.Tsv = 11
: File di testo con valori separati da tabulazioni (TSV).Unknown = 255
: Rappresenta un formato non riconosciuto, non può essere salvato.XHtml = 771
: Rappresenta un file XHtml.Xlam = 10
: Rappresenta un file xltm che abilita le macro degli add-in.Xlsb = 16
: Rappresenta un file xlsb.Xlsm = 7
: Rappresenta un file xlsm che abilita le macro.Xlsx = 6
: Rappresenta un file xlsx.Xlt = 32
: File di template di Excel 97-2003.Xltm = 9
: Rappresenta un file xltm che abilita le macro.Xltx = 8
: Rappresenta un file xltx.Xml = 51
: Rappresenta un semplice file xml.Xps = 20
: Formato XPS (XML Paper Specification).
Enum ImageType
Informazione
Specifica il tipo (formato) di un’immagine.
Fields
Bmp = 7
: Windows BitmapEmf = 2
: Windows Enhanced Metafile.Gif = 66
: GifJpeg = 5
: JPEG JFIF.OfficeCompatibleEmf = 71
: Windows Enhanced Metafile che è più compatibile con Office.Pict = 4
: Macintosh PICT.Png = 6
: Portable Network Graphics.Svg = 68
: SvgSvm = 69
: SvmTiff = 67
: TiffUnknown = 0
: Un tipo di immagine sconosciuto.WebP = 72
: Formato immagine WeppyWmf = 3
: Windows Metafile.