Skip to content

Commit fa6245c

Browse files
Merge pull request #2021 from syncfusion-content/879332
879332: Need to add troubleshooting section in UG documentation.
2 parents 5ad80e7 + cf9e1f3 commit fa6245c

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

File-Formats/PDF/Working-with-DigitalSignature.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4164,3 +4164,33 @@ loadedDocument.Close(true)
41644164

41654165
{% endtabs %}
41664166

4167+
## Troubleshooting
4168+
4169+
<th style="font-size:14px"><b>Signature is not visible after signing the document.
4170+
</b></th>
4171+
4172+
<table>
4173+
<tr>
4174+
<th style="font-size:14px">Reason
4175+
</th>
4176+
<td style="font-size:14px">
4177+
<b>The signature bounds is not properly set, due to this may appear invisible.</b>
4178+
</td>
4179+
</tr>
4180+
<tr>
4181+
<th style="font-size:14px"> Solution
4182+
</th>
4183+
<td>We recommend ensuring that the bounds value of the signature field is correctly set and drawing the image with the signature to ensure its visibility
4184+
{% tabs %}
4185+
4186+
{% highlight c# tabtitle="C#" %}
4187+
4188+
//Set the signature bounds.
4189+
signature.Bounds= new RectangleF(new PointF(0, 0), new SizeF(100, 100));
4190+
4191+
{% endhighlight %}
4192+
{% endtabs %}
4193+
</td>
4194+
</tr>
4195+
</table>
4196+

File-Formats/PDF/Working-with-Tagged-PDF.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
11931193
## Marking PDF content as an artifact
11941194

11951195
Artifacts in the PDF document can be graphic objects or other markings that are not a part of the authored content and will include such things as: headers, footers, page numbers, watermarks, cut marks, color bars, background images, lines separating content, or decorative images.
1196-
You can add artifact tag to PDF element by using the [PdfArtifact](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.PdfArtifact.html) class. The artifact type can be speified by using the [ArtifactType](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.PdfArtifact.html#Syncfusion_Pdf_PdfArtifact_ArtifactType) property available in the ```PdfArtifact``` class.
1196+
You can add artifact tag to PDF element by using the [PdfArtifact](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.PdfArtifact.html) class. The artifact type can be specified by using the [ArtifactType](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.PdfArtifact.html#Syncfusion_Pdf_PdfArtifact_ArtifactType) property available in the ```PdfArtifact``` class.
11971197

11981198
The following code explains how to add tag for header and footers in the PDF document.
11991199

0 commit comments

Comments
 (0)