IExternSheet.cs 331 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Interfaces
  5. {
  6. public interface IExternSheet
  7. {
  8. void SheetNameToIndex(string sSheetName, ref ushort iSheetIndex );
  9. ushort AddEntry( string fromSheet);
  10. ushort AddEntry( string fromSheet, string toSheet);
  11. }
  12. }