コード例 #1
0
        public static GhostscriptPages SinglePage(this GhostscriptPages source, int pageNumber)
        {
            if (pageNumber < 1)
            {
                throw new InvalidOperationException("Il numero di pagina deve essere maggiore di 0.");
            }

            return(source.SetPages(pageNumber, pageNumber));
        }
コード例 #2
0
 public static GhostscriptPages AllPagesWorkaround(this GhostscriptPages source)
 {
     // FG20131016: Attenzione, questo è un workaround poichè la property "AllPages" non funziona correttamente.
     return(source.SetPages(1, -1));
 }