GoToSubfile() public méthode

public GoToSubfile ( short index ) : XLDNavigator
index short
Résultat XLDNavigator
Exemple #1
0
        public static XLDNavigator ReadToIndex(Stream stream, short index)
        {
            XLDNavigator nav = new XLDNavigator(stream);

            return(nav.GoToSubfile(index));
        }
Exemple #2
0
		public static XLDNavigator ReadToIndex(Stream stream, short index)
		{
			XLDNavigator nav = new XLDNavigator(stream);
			return nav.GoToSubfile(index);
		}
Exemple #3
0
        public static XLDNavigator ReadToIndex(string file, short index)
        {
            XLDNavigator nav = new XLDNavigator(file);

            return(nav.GoToSubfile(index));
        }
Exemple #4
0
		public static XLDNavigator ReadToIndex(string file, short index)
		{
			XLDNavigator nav = new XLDNavigator(file);
			return nav.GoToSubfile(index);
		}