Add button component
Leave feedback
On this page
Button component creates a button component as shown in the picture below:
You can specify the following properties of the ButtonComponent class:
To add a button component, follow these steps:
- Instantiate the Annotator class. Specify the input document path or stream.
- Instantiate the ButtonComponent class. Specify the appropriate properties (position, page number, etc).
- Call the Add method. Specify the ButtonComponent class.
- Call the Save method. Specify the output document path or stream.
The following code snippet shows how to add ButtonComponent to the document:
using (Annotator annotator = new Annotator("input.pdf"))
{
ButtonComponent button = new ButtonComponent
{
CreatedOn = DateTime.Now,
Style = BorderStyle.Dashed,
Message = "This is button component",
BorderColor = 1422623,
PenColor = 14527697,
ButtonColor = 10832612,
PageNumber = 0,
BorderWidth = 12,
Box = new Rectangle(100, 300, 90, 30),
Replies = new List<Reply>
{
new Reply
{
Comment = "First comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Second comment",
RepliedOn = DateTime.Now
}
}
};
annotator.Add(button);
annotator.Save("result.pdf");
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.