123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Biff8Excel.Interfaces
- {
- public interface IExternSheet
- {
- void SheetNameToIndex(string sSheetName, ref ushort iSheetIndex );
- ushort AddEntry( string fromSheet);
- ushort AddEntry( string fromSheet, string toSheet);
- }
- }
|