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: SautinSoftAssembly: SautinSoft.PdfFocus (in SautinSoft.PdfFocus.dll) Version: 2024.11.11
Syntax public string CopyrightText { get; set; }
Public Property CopyrightText As String
Get
Set
Property Value
StringRemarks
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)
{
string pdfFile = Path.GetFullPath(@"..\..\..\text and graphics.pdf");
string wordFile = "Result.docx";
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
f.OpenPdf(pdfFile);
f.CopyrightText = "Created by Simpson Family";
if (f.PageCount > 0)
{
int result = f.ToWord(wordFile);
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"
Dim f As New SautinSoft.PdfFocus()
f.OpenPdf(pdfFile)
f.CopyrightText = "Created by Simpson Family"
If f.PageCount > 0 Then
Dim result As Integer = f.ToWord(wordFile)
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