Aspose.Pdf.Examples.CSharp.AsposePDFFacades.TechnicalArticles.ConcatenatePdfFilesAndCreateTOC.AddTextStamps C# (CSharp) Метод

AddTextStamps() публичный статический Метод

public static AddTextStamps ( ) : void
Результат void
        public static void AddTextStamps()
        {
            // ExStart:AddTextStamps
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_AsposePdfFacades_TechnicalArticles();

            // Set Text Stamp to display string Table Of Contents
            Aspose.Pdf.Facades.Stamp stamp = new Aspose.Pdf.Facades.Stamp();
            stamp.BindLogo(new FormattedText("Table Of Contents", System.Drawing.Color.Maroon, System.Drawing.Color.Transparent, Aspose.Pdf.Facades.FontStyle.Helvetica, EncodingType.Winansi, true, 18));
            // Specify the origin of Stamp. We are getting the page width and specifying the X coordinate for stamp
            stamp.SetOrigin((new PdfFileInfo(new FileStream(dataDir + "input1.pdf", FileMode.Open)).GetPageWidth(1) / 3), 700);
            // Set particular pages
            stamp.Pages = new int[] { 1 };           
            // ExEnd:AddTextStamps
        }
        public static void CreateLocalLinks()