Class SpreadsheetMerger

Class SpreadsheetMerger

قم بتحويل العديد من ملفات القوالب إلى واحدة.
public class SpreadsheetMerger

Inheritance

object SpreadsheetMerger

الأعضاء الموروثين

Examples

[C#]
LoadOptions loadOptions = new LoadOptions();
list.Add(new LoadOptions() { InputFile = "template1.xlsx" });
list.Add(new LoadOptions() { InputFile = "template2.xlsx" });
SpreadsheetSaveOptions saveOptions = new SpreadsheetSaveOptions();
saveOptions.OutputFile = "merged.xlsx";
SpreadsheetMerger.Process(loadOptions, saveOptions,
    new string[] { "template2.xlsx", "template2.xlsx", });

Methods

Process(LoadOptions، SaveOption، شريط[])

public static void Process(LoadOptions loadOptions, SaveOptions saveOptions, string[] files)

Parameters

  • loadOptions LoadOptions : خيارات الإدخال والتحميل. إدخلها(Sheetize.LoadOptions.InputFile أو Sheetiz. Load Options: InputStream): لا تأخذ أي تأثير لأنه سيتم تحديد جميع الإيرادات بمعيار “الملفات”.
  • saveOptions SaveOptions : خيارات الإنتاج والادخار:
  • files string []: [ ] : جميع ملفات القالب ليتم دمجها

Process(LoadOptions, SaveOption, AbstractLoadoptionsالمورد)

public static void Process(LoadOptions loadOptions, SaveOptions saveOptions, AbstractLoadOptionsProvider provider)

Parameters

  • loadOptions LoadOptions : خيارات التحميل. إدخالها(Sheetize.LoadOptions.InputFile أو Sheetiz. Load Options: InputStream): لا تأخذ أي تأثير لأنه سيتم تحديد جميع الإدخلات بواسطة المعيار “المورد”.
  • saveOptions SaveOptions : خيارات الإنتاج والادخار:
  • provider AbstractLoadOptionsProvider : مزود خيارات التحميل للحصول على إدخالات ليتم دمجها

اسم الفضاء : Sheetize مجلس النواب : Sheetize.dll

 عربي