Back to Devexpress

PdfSignatureBuilder.Location Property

officefileapi-devexpress-dot-pdf-dot-pdfsignaturebuilder-91a46091.md

latest3.3 KB
Original Source

PdfSignatureBuilder.Location Property

Gets or sets the signing location.

Namespace : DevExpress.Pdf

Assembly : DevExpress.Pdf.v25.2.Core.dll

NuGet Package : DevExpress.Pdf.Core

Declaration

csharp
public string Location { get; set; }
vb
Public Property Location As String

Property Value

TypeDescription
String

The location associated with the signer’s identity.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the Location property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

pdf-document-api-custom-signer/CS/CustomSigner/Program.cs#L31

csharp
signatureBuilder.SetImageData(System.IO.File.ReadAllBytes("signature.jpg"));
signatureBuilder.Location = "LOCATION";

pdf-document-api-custom-tsa-client/CS/CustomTsaClient/Program.cs#L28

csharp
signatureBuilder.SetImageData(File.ReadAllBytes("JaneCooper.jpg"));
signatureBuilder.Location = "United Kingdom";

pdf-document-api-custom-signer/VB/CustomSigner/Program.vb#L31

vb
signatureBuilder.SetImageData(System.IO.File.ReadAllBytes("signature.jpg"))
signatureBuilder.Location = "LOCATION"

pdf-document-api-custom-tsa-client/VB/CustomTsaClient/Program.vb#L26

vb
signatureBuilder.SetImageData(File.ReadAllBytes("JaneCooper.jpg"))
signatureBuilder.Location = "United Kingdom"

pdf-document-api-use-azure-key-vault-api-to-sign-document/VB/PdfAPIAzureKeyVaultSample/Program.vb#L48

vb
signatureBuilder.SetImageData(System.IO.File.ReadAllBytes("signature.jpg"))
signatureBuilder.Location = "LOCATION"

See Also

PdfSignatureBuilder Class

PdfSignatureBuilder Members

DevExpress.Pdf Namespace