officefileapi-devexpress-dot-pdf-dot-pdfsignaturebuilder-91a46091.md
Gets or sets the signing location.
Namespace : DevExpress.Pdf
Assembly : DevExpress.Pdf.v25.2.Core.dll
NuGet Package : DevExpress.Pdf.Core
public string Location { get; set; }
Public Property Location As String
| Type | Description |
|---|---|
| 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
signatureBuilder.SetImageData(System.IO.File.ReadAllBytes("signature.jpg"));
signatureBuilder.Location = "LOCATION";
pdf-document-api-custom-tsa-client/CS/CustomTsaClient/Program.cs#L28
signatureBuilder.SetImageData(File.ReadAllBytes("JaneCooper.jpg"));
signatureBuilder.Location = "United Kingdom";
pdf-document-api-custom-signer/VB/CustomSigner/Program.vb#L31
signatureBuilder.SetImageData(System.IO.File.ReadAllBytes("signature.jpg"))
signatureBuilder.Location = "LOCATION"
pdf-document-api-custom-tsa-client/VB/CustomTsaClient/Program.vb#L26
signatureBuilder.SetImageData(File.ReadAllBytes("JaneCooper.jpg"))
signatureBuilder.Location = "United Kingdom"
signatureBuilder.SetImageData(System.IO.File.ReadAllBytes("signature.jpg"))
signatureBuilder.Location = "LOCATION"
See Also