Click or drag to resize

PdfFocusCopyrightText Property

Gets and sets the text which will be placed on the each page at the top-left corner of the resulting document. For example, "Created by ....". Default value: String.Empty.

Namespace: SautinSoft
Assembly: SautinSoft.PdfFocus (in SautinSoft.PdfFocus.dll) Version: 2024.3.28
Syntax
public string CopyrightText { get; set; }

Property Value

String
Remarks
You may specify any textual string, for example "Created by Simpson Family". And the each page of the resulting document will contains this text.
P.S. This property doesn't affect into XML and Excel conversion.
This property doesn't allow to format position, font size, family and so forth for the text. Because PDF Focus .Net is just a library to make conversion.
If you need the full control under the produced document or want modify it, you may try another our component Document .Net:
https://www.sautinsoft.com/products/document/.
Example
CopyrightText Property in C#
using System;
using System.IO;

namespace Sample
{
    class Sample
    {
        static void Main(string[] args)
        {
                                  // Get your free 30-day key here:   
             // https://sautinsoft.com/start-for-free/

            string pdfFile = Path.GetFullPath(@"..\..\..\text and graphics.pdf");
            string wordFile = "Result.docx";

            //Convert PDF file to Text file
            SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();

            f.OpenPdf(pdfFile);

            //This property doesn't affect into XML and Excel conversion.
            f.CopyrightText = "Created by Simpson Family";

            if (f.PageCount > 0)
            {
                int result = f.ToWord(wordFile);

                //Show Text document
                if (result == 0)
                {
                    System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(wordFile) { UseShellExecute = true });
                }
            }
        }
    }
}
CopyrightText Property in VB.Net
Imports System
Imports System.IO

Namespace Sample
    Friend Class Sample
        Shared Sub Main(ByVal args() As String)
            Dim pdfFile As String = Path.GetFullPath("..\..\..\text and graphics.pdf")
            Dim wordFile As String = "Result.docx"
                                    ' Get your free 30-day key here: 
                                    ' https://sautinsoft.com/start-for-free/

            'Convert PDF file to Text file
            Dim f As New SautinSoft.PdfFocus()

            f.OpenPdf(pdfFile)

            'This property doesn't affect into XML and Excel conversion.
            f.CopyrightText = "Created by Simpson Family"

            If f.PageCount > 0 Then
                Dim result As Integer = f.ToWord(wordFile)

                'Show Text document
                If result = 0 Then
                    System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(wordFile) With {.UseShellExecute = True})
                End If
            End If
        End Sub
    End Class
End Namespace
See Also