Creating PDF Bookmarks through Scripting

Introduction

A common request received from customers is how to setup PDF bookmarks. PDF Bookmarking can be accomplished by either inserting PB- barcode sheets where you desire a PDF bookmark to be set or via scripting as exampled below

 

Script Example

This code will create a PDF Bookmark on the first page of a document based on the value entered in the field PDFBookmarkName:

 

PDF Bookmarking
public virtual bool DocumentDataRecordValidated(IDocument document, IDataRecord dataRecord, bool valid, ref string validationMessage)
 
	{
		try
		{ 
		document.Pages[0].PDFBookmarks.Clear(); document.Pages[0].PDFBookmarks.Add(dataRecord["PDFBookmarkName"].StringValue, 1, 	Color.Black, FontStyle.Regular); return valid; 
		}
		catch (Exception exception)
		{ 
		base.ProcessException(exception); return false; 
		}
	}

 

If you are still experiencing difficulties, please contact our Support team by:


 

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.